summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-10-01 22:45:11 (GMT)
committerhobbs <hobbs>1999-10-01 22:45:11 (GMT)
commit0d9ca17839866584c7545aadbacf87829ce2a7f7 (patch)
treef089bfc9ef19c8d3f9aa561064694b362df23a52 /unix/Makefile.in
parentf29a5be23f295f3e213d950ffbbea8ccbc06c8b5 (diff)
downloadtk-0d9ca17839866584c7545aadbacf87829ce2a7f7.zip
tk-0d9ca17839866584c7545aadbacf87829ce2a7f7.tar.gz
tk-0d9ca17839866584c7545aadbacf87829ce2a7f7.tar.bz2
1999-09-24 Jeff Hobbs <hobbs@scriptics.com>
* */README: * win/makefile.vc: * */configure.in: * generic/tk.h: * library/tk.tcl: up'd to 8.3a1 * unix/Makefile.in: changed 'mkdir' to 'mkdir -p' * library/dialog.tcl: changed {Times 18} to {Times 12} for dialog font.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 1464dd8..a314426 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.31 1999/09/21 06:43:00 hobbs Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.32 1999/10/01 22:45:27 hobbs Exp $
# Current Tk version; used in various names.
@@ -430,7 +430,7 @@ install-binaries: $(TK_LIB_FILE) $(TK_STUB_LIB_FILE) $(TK_BUILD_EXP_FILE) wish
do \
if [ ! -d $$i ] ; then \
echo "Making directory $$i"; \
- mkdir $$i; \
+ mkdir -p $$i; \
chmod 755 $$i; \
else true; \
fi; \
@@ -462,7 +462,7 @@ install-libraries:
do \
if [ ! -d $$i ] ; then \
echo "Making directory $$i"; \
- mkdir $$i; \
+ mkdir -p $$i; \
chmod 755 $$i; \
else true; \
fi; \
@@ -494,7 +494,7 @@ install-demos:
do \
if [ ! -d $$i ] ; then \
echo "Making directory $$i"; \
- mkdir $$i; \
+ mkdir -p $$i; \
chmod 755 $$i; \
else true; \
fi; \
@@ -524,7 +524,7 @@ install-doc:
do \
if [ ! -d $$i ] ; then \
echo "Making directory $$i"; \
- mkdir $$i; \
+ mkdir -p $$i; \
chmod 755 $$i; \
else true; \
fi; \
@@ -924,7 +924,7 @@ $(UNIX_DIR)/configure: $(UNIX_DIR)/configure.in
dist: $(UNIX_DIR)/configure
rm -rf $(DISTDIR)
- mkdir $(DISTDIR)
+ mkdir -p $(DISTDIR)
mkdir $(DISTDIR)/unix
cp -p $(UNIX_DIR)/*.c $(UNIX_DIR)/*.h $(DISTDIR)/unix
cp $(TOP_DIR)/license.terms $(UNIX_DIR)/Makefile.in $(DISTDIR)/unix