From da572fa3a625e97fb91058786b86226b48096e25 Mon Sep 17 00:00:00 2001 From: suresh Date: Tue, 8 Dec 1998 12:43:10 +0000 Subject: Added -p flag to "mkdir" commands in "install-libraries" target to allow error- free installation of Tcl script libraries. --- unix/Makefile.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/unix/Makefile.in b/unix/Makefile.in index 12c6e33..dca1721 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.15 1998/12/04 23:12:44 suresh Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.16 1998/12/08 12:43:10 suresh Exp $ # Current Tcl version; used in various names. @@ -403,7 +403,7 @@ topDirName: gendate: yacc -l $(GENERIC_DIR)/tclGetDate.y sed -e 's/yy/TclDate/g' -e '/^#include /d' \ - -e 's/SCCSID/RCS: @(#) $Id: Makefile.in,v 1.15 1998/12/04 23:12:44 suresh Exp $' + -e 's/SCCSID/RCS: @(#) $Id: Makefile.in,v 1.16 1998/12/08 12:43:10 suresh Exp $' -e '/#ifdef __STDC__/,/#endif/d' -e '/TclDateerrlab:/d' \ -e '/TclDatenewstate:/d' -e '/#pragma/d' \ $(GENERIC_DIR)/tclDate.c @@ -438,7 +438,7 @@ install-binaries: $(TCL_LIB_FILE) tclsh do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ - mkdir $$i; \ + mkdir -p $$i; \ chmod 755 $$i; \ else true; \ fi; \ @@ -458,7 +458,7 @@ install-libraries: do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ - mkdir $$i; \ + mkdir -p $$i; \ chmod 755 $$i; \ else true; \ fi; \ @@ -467,7 +467,7 @@ install-libraries: do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ - mkdir $(SCRIPT_INSTALL_DIR)/$$i; \ + mkdir -p $(SCRIPT_INSTALL_DIR)/$$i; \ chmod 755 $(SCRIPT_INSTALL_DIR)/$$i; \ else true; \ fi; \ @@ -493,7 +493,7 @@ install-man: do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ - mkdir $$i; \ + mkdir -p $$i; \ chmod 755 $$i; \ else true; \ fi; \ -- cgit v0.12