Add NetBSD RCS Id.
Change a mkdir to mkdir -p in the patch to Makefile.in, so that the include directories get made if they don't exist, as they're put in a non-standard place.
This commit is contained in:
parent
e6cab1f0f3
commit
c878fb2356
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.2 1997/10/06 15:32:32 agc Exp $
|
||||
# New ports collection makefile for: tcl8.0
|
||||
# Version required: 8.0
|
||||
# Date created: 19 August 1997
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
--- Makefile.in.orig Fri Aug 15 22:17:28 1997
|
||||
+++ Makefile.in Wed Oct 1 09:51:59 1997
|
||||
--- Makefile.in.orig Fri Aug 15 21:17:28 1997
|
||||
+++ Makefile.in Wed Oct 1 17:19:36 1997
|
||||
@@ -55,7 +55,9 @@
|
||||
BIN_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/bin
|
||||
|
||||
|
@ -50,7 +50,7 @@
|
|||
@for i in $(LIB_INSTALL_DIR) $(BIN_INSTALL_DIR) ; \
|
||||
do \
|
||||
if [ ! -d $$i ] ; then \
|
||||
@@ -429,14 +436,19 @@
|
||||
@@ -429,18 +436,23 @@
|
||||
@$(INSTALL_DATA) $(TCL_LIB_FILE) $(LIB_INSTALL_DIR)/$(TCL_LIB_FILE)
|
||||
@(cd $(LIB_INSTALL_DIR); $(RANLIB) $(TCL_LIB_FILE))
|
||||
@chmod 555 $(LIB_INSTALL_DIR)/$(TCL_LIB_FILE)
|
||||
|
@ -73,6 +73,11 @@
|
|||
do \
|
||||
if [ ! -d $$i ] ; then \
|
||||
echo "Making directory $$i"; \
|
||||
- mkdir $$i; \
|
||||
+ mkdir -p $$i; \
|
||||
chmod 755 $$i; \
|
||||
else true; \
|
||||
fi; \
|
||||
@@ -454,8 +466,15 @@
|
||||
else true; \
|
||||
fi; \
|
||||
|
|
Loading…
Reference in a new issue