summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordas <das@noemail.net>2003-10-01 14:33:48 (GMT)
committerdas <das@noemail.net>2003-10-01 14:33:48 (GMT)
commited38da11598afa767da872c6d3b53ff2d36a13bc (patch)
tree809f8b662f2e114198443b478b32ebdbaf2dca4e /macosx
parentefe2689ffd59d37e37aa9ba6d4ae435690b494d6 (diff)
downloadtcl-ed38da11598afa767da872c6d3b53ff2d36a13bc.zip
tcl-ed38da11598afa767da872c6d3b53ff2d36a13bc.tar.gz
tcl-ed38da11598afa767da872c6d3b53ff2d36a13bc.tar.bz2
* macosx/Makefile: fixed redo prebinding bug when DESTDIR="".
* mac/tclMacResource.c: fixed possible NULL dereference (bdesgraupes). FossilOrigin-Name: ce2dbaa84e1b1e905800f577063653df5fd01f9d
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/Makefile b/macosx/Makefile
index f976a99..c4e3b71 100644
--- a/macosx/Makefile
+++ b/macosx/Makefile
@@ -3,7 +3,7 @@
# Makefile to build Tcl on Mac OS X packaged as a Framework
# uses standard unix build system in tcl/unix
#
-# RCS: @(#) $Id: Makefile,v 1.8 2003/09/25 05:34:07 das Exp $
+# RCS: @(#) $Id: Makefile,v 1.9 2003/10/01 14:33:49 das Exp $
#
########################################################################################################
@@ -26,7 +26,7 @@ BINDIR ?= ${PREFIX}/bin
MANDIR ?= ${PREFIX}/man
# set to non-empty value to install manpages in addition to html help:
-INSTALL_MANPAGES ?=
+INSTALL_MANPAGES ?=
TCL_PACKAGE_PATH ?= "~/Library/Tcl /Library/Tcl /Network/Library/Tcl /System/Library/Tcl \
~/Library/Frameworks /Library/Frameworks /Network/Library/Frameworks \
@@ -168,7 +168,7 @@ ifeq (${EMBEDDED_BUILD},1)
-rmdir -p "${INSTALL_ROOT}${BINDIR}" 2>&-
else
# redo prebinding
- cd ${INSTALL_ROOT}; \
+ cd ${INSTALL_ROOT}/; \
if [ ! -d usr/lib ]; then mkdir -p usr; ln -fs /usr/lib usr/; RM_USRLIB=1; fi; \
if [ ! -d System ]; then ln -fs /System .; RM_SYSTEM=1; fi; \
redo_prebinding -r . "./${BINDIR}/${TCLSH}"; \