Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lammps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
multiscale
lammps
Commits
34525831
Commit
34525831
authored
11 years ago
by
sjplimp
Browse files
Options
Downloads
Patches
Plain Diff
git-svn-id:
svn://svn.icms.temple.edu/lammps-ro/trunk@9912
f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent
6f069732
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Depend.sh
+3
-3
3 additions, 3 deletions
src/Depend.sh
src/Makefile
+4
-2
4 additions, 2 deletions
src/Makefile
with
7 additions
and
5 deletions
src/Depend.sh
+
3
−
3
View file @
34525831
# Depend.sh = Install/unInstall files for dependent packages
# Depend.sh = Install/unInstall files due to package dependencies
# this script is invoked after any package is installed/uninstalled
# parent package = has files that files in another package derive from
# parent package = has files that files in another package derive from
# child package = has files that derive from files in another package
# child package = has files that derive from files in another package
# all parent/child package dependencies should be listed below
# all parent/child package dependencies should be listed below
# this script is invoked after any package is installed/uninstalled
# re-install child packages that depend on the parent,
# this script re-installs child packages that depend on the parent,
# but only if the child package is already installed
# but only if the child package is already installed
# this is necessary to insure the child package installs
# this is necessary to insure the child package installs
# only child files whose parent package files are now installed
# only child files whose parent package files are now installed
...
...
This diff is collapsed.
Click to expand it.
src/Makefile
+
4
−
2
View file @
34525831
...
@@ -193,7 +193,8 @@ yes-%:
...
@@ -193,7 +193,8 @@ yes-%:
echo
"Package
$(
@:yes-%=%
)
does not exist"
;
\
echo
"Package
$(
@:yes-%=%
)
does not exist"
;
\
else
\
else
\
echo
"Installing package
$(
@:yes-%=%
)
"
;
\
echo
"Installing package
$(
@:yes-%=%
)
"
;
\
cd
$(
YESDIR
);
$(
SHELL
)
Install.sh 1
;
cd
..
;
$(
SHELL
)
Depend2.sh
$(
YESDIR
)
1
;
\
cd
$(
YESDIR
);
$(
SHELL
)
Install.sh 1
;
cd
..
;
\
$(
SHELL
)
Depend.sh
$(
YESDIR
)
1
;
\
fi
;
fi
;
no-%
:
no-%
:
...
@@ -201,7 +202,8 @@ no-%:
...
@@ -201,7 +202,8 @@ no-%:
echo
"Package
$(
@:no-%=%
)
does not exist"
;
\
echo
"Package
$(
@:no-%=%
)
does not exist"
;
\
else
\
else
\
echo
"Uninstalling package
$(
@:no-%=%
)
"
;
\
echo
"Uninstalling package
$(
@:no-%=%
)
"
;
\
cd
$(
NODIR
);
$(
SHELL
)
Install.sh 0
;
cd
..
;
$(
SHELL
)
Depend2.sh
$(
NODIR
)
0
;
\
cd
$(
NODIR
);
$(
SHELL
)
Install.sh 0
;
cd
..
;
\
$(
SHELL
)
Depend.sh
$(
NODIR
)
0
;
\
fi
;
fi
;
# status = list src files that differ from package files
# status = list src files that differ from package files
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment