diff options
author | stanton <stanton> | 1998-12-10 03:28:02 (GMT) |
---|---|---|
committer | stanton <stanton> | 1998-12-10 03:28:02 (GMT) |
commit | f83326906134a42cb02d4811970b37dec3eac20f (patch) | |
tree | 927fecf40faa8313978c9e55265f90352152d4dd /unix/Makefile.in | |
parent | 60e1f6f58d57656d72da839188a72a91bbb91d9a (diff) | |
download | tcl-f83326906134a42cb02d4811970b37dec3eac20f.zip tcl-f83326906134a42cb02d4811970b37dec3eac20f.tar.gz tcl-f83326906134a42cb02d4811970b37dec3eac20f.tar.bz2 |
merged 8.0 changes
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 28870e3..71a4611 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.1.2.11 1998/12/10 01:40:56 stanton Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.1.2.12 1998/12/10 03:28:02 stanton Exp $ # Current Tcl version; used in various names. @@ -464,7 +464,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; \ @@ -484,7 +484,7 @@ install-libraries: do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ - mkdir $$i; \ + mkdir -p $$i; \ chmod 755 $$i; \ else true; \ fi; \ @@ -493,7 +493,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; \ @@ -523,7 +523,7 @@ install-man: do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ - mkdir $$i; \ + mkdir -p $$i; \ chmod 755 $$i; \ else true; \ fi; \ |