diff options
author | das <das> | 2004-08-26 16:01:17 (GMT) |
---|---|---|
committer | das <das> | 2004-08-26 16:01:17 (GMT) |
commit | 1d21fcfd2d8f150847d7d1636ce03746adff3955 (patch) | |
tree | 21027e38d6dcd722efa194b6054bb9a63532834a /macosx/Makefile | |
parent | 3060491426e52099c85b053985225c8518fa0d4e (diff) | |
download | tcl-1d21fcfd2d8f150847d7d1636ce03746adff3955.zip tcl-1d21fcfd2d8f150847d7d1636ce03746adff3955.tar.gz tcl-1d21fcfd2d8f150847d7d1636ce03746adff3955.tar.bz2 |
* unix/Makefile.in: added customization of default module path roots
via TCL_MODULE_PATH makefile variable.
* macosx/Makefile: add platform standard locations to default
module path roots. [Patch 94288]
Diffstat (limited to 'macosx/Makefile')
-rw-r--r-- | macosx/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/Makefile b/macosx/Makefile index 472a0ad..4c5509f 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.15 2004/07/20 10:23:14 das Exp $ +# RCS: @(#) $Id: Makefile,v 1.16 2004/08/26 16:01:28 das Exp $ # ######################################################################################################## @@ -31,6 +31,7 @@ INSTALL_MANPAGES ?= TCL_PACKAGE_PATH ?= "~/Library/Tcl /Library/Tcl /Network/Library/Tcl /System/Library/Tcl \ ~/Library/Frameworks /Library/Frameworks /Network/Library/Frameworks \ /System/Library/Frameworks" +TCL_MODULE_PATH ?= "~/Library/Tcl /Library/Tcl /Network/Library/Tcl /System/Library/Tcl" #------------------------------------------------------------------------------------------------------- # meta targets @@ -114,7 +115,7 @@ OBJ_DIR = ${OBJROOT}/${BUILD_STYLE} ${PROJECT}: override INSTALL_ROOT = ${OBJ_DIR}/ -MAKE_VARS := INSTALL_ROOT TCL_PACKAGE_PATH TCL_LIBRARY DYLIB_INSTALL_DIR +MAKE_VARS := INSTALL_ROOT TCL_PACKAGE_PATH TCL_MODULE_PATH TCL_LIBRARY DYLIB_INSTALL_DIR MAKE_ARGS_V = $(foreach v,${MAKE_VARS},$v=${$v}) export CPPROG := cp -p |