diff options
author | suresh <suresh> | 1998-12-08 12:43:10 (GMT) |
---|---|---|
committer | suresh <suresh> | 1998-12-08 12:43:10 (GMT) |
commit | da572fa3a625e97fb91058786b86226b48096e25 (patch) | |
tree | e5a272a6b693a008de8be3502a8dd09c2f2a83e9 /unix | |
parent | 7de7608f5358f5233bd94d27d290b2e938aaf4fc (diff) | |
download | tcl-da572fa3a625e97fb91058786b86226b48096e25.zip tcl-da572fa3a625e97fb91058786b86226b48096e25.tar.gz tcl-da572fa3a625e97fb91058786b86226b48096e25.tar.bz2 |
Added -p flag to "mkdir" commands in "install-libraries" target to allow error-
free installation of Tcl script libraries.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 12 |
1 files 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 <values.h>/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' \ <y.tab.c >$(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; \ |