Skip to content
Snippets Groups Projects
Commit 34525831 authored by sjplimp's avatar sjplimp
Browse files

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
# 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
......
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment