[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2b3-7-g7e2a47b

Service Account noreply at mpich.org
Fri Jun 5 15:13:54 CDT 2015


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  7e2a47bb2f6d2c587cc7eadcbf80be5b191b0bc1 (commit)
      from  e1635ed2e0bc0fc7ceaa5130b0977dec59d7ec04 (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/7e2a47bb2f6d2c587cc7eadcbf80be5b191b0bc1

commit 7e2a47bb2f6d2c587cc7eadcbf80be5b191b0bc1
Author: Sangmin Seo <sseo at anl.gov>
Date:   Fri Jun 5 15:04:15 2015 -0500

    Create htmldir before installing html files.
    
    htmldir was not created before installing index.html. This caused
    `make install` to fail on FreeBSD.  This patch fixes this issue.
    
    Signed-off-by: Junchao Zhang <jczhang at mcs.anl.gov>

diff --git a/Makefile.am b/Makefile.am
index e1c7077..4ce3cd5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -495,6 +495,7 @@ install-html-local:
 	fi ; \
 	export dir ; \
 	if test ! -z $$dir && test -d $$dir && cd $$dir ; then \
+	 if [ ! -e ${DESTDIR}${htmldir} ] ; then $(MKDIR_P) ${DESTDIR}${htmldir} ; fi ; \
 	 for name in * ; do \
 	  if [ "$$name" = "*" ] ; then continue ; fi ; \
 	  if [ -f $$name ] ; then \

-----------------------------------------------------------------------

Summary of changes:
 Makefile.am |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list