[mpich] MPICH primary repository branch, master, updated. v3.1.2-121-ge9a4e1c
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via e9a4e1c69b0439c56829726203acefc35456e076 (commit) via 3a6de022076fc2863eae2daf14c283fc99c3e065 (commit) from 9c3e5475e4e3006e1db1f112805bdb48e1130075 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/e9a4e1c69b0439c56829726203acefc354... commit e9a4e1c69b0439c56829726203acefc35456e076 Author: Pavan Balaji <[email protected]> Date: Fri Aug 22 18:29:14 2014 -0500 Cleanup uninstall-local. We were not cleaning up some of the soft links created during make uninstall. Signed-off-by: Antonio J. Pena <[email protected]> diff --git a/Makefile.am b/Makefile.am index d2b798f..118005c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -264,7 +264,12 @@ DISTCLEANFILES += config.system clean-local: $(CLEAN_LOCAL_TARGETS) uninstall-local: - rm -f ${DESTDIR}${bindir}/@MPICPP_NAME@ + for x in @MPICPP_NAME@ @MPIF90_NAME@ @MPIF77_NAME@ ; do \ + rm -f ${DESTDIR}${bindir}/$$x ; \ + done ; \ + for x in mpl opa mpich fmpich mpichf90 mpichcxx ; do \ + rm -f ${DESTDIR}${libdir}/lib$$x@SHLIB_EXT@ ; \ + done # -------------------------------------------------------------------------- # coverage rules http://git.mpich.org/mpich.git/commitdiff/3a6de022076fc2863eae2daf14c283fc99... commit 3a6de022076fc2863eae2daf14c283fc99c3e065 Author: Pavan Balaji <[email protected]> Date: Fri Aug 22 15:53:57 2014 -0500 Move removal of mpic++ to uninstall-local. We were trying to clean up mpic++ (which is a soft link to mpicxx) during "make clean". This is incorrect since mpic++ is located in the install directory, which we should not touch during make clean. This patch moves such cleanup to make uninstall. Signed-off-by: Antonio J. Pena <[email protected]> diff --git a/Makefile.am b/Makefile.am index 6af4b62..d2b798f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -262,6 +262,8 @@ DISTCLEANFILES += config.system # we can only have one clean-local, so we hook into it via conditionally # defined variables in the dependencies section clean-local: $(CLEAN_LOCAL_TARGETS) + +uninstall-local: rm -f ${DESTDIR}${bindir}/@MPICPP_NAME@ # -------------------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: Makefile.am | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org