diff options
author | das <das> | 2008-05-06 16:33:07 (GMT) |
---|---|---|
committer | das <das> | 2008-05-06 16:33:07 (GMT) |
commit | 15ea311f9c6ca61c783cb383a9579b63e56aac83 (patch) | |
tree | 474cc606336631cc98af943bb0aef4412d47900c /macosx/GNUmakefile | |
parent | 47a766393e63ffe597df226edf2012eae4231ab2 (diff) | |
download | tcl-15ea311f9c6ca61c783cb383a9579b63e56aac83.zip tcl-15ea311f9c6ca61c783cb383a9579b63e56aac83.tar.gz tcl-15ea311f9c6ca61c783cb383a9579b63e56aac83.tar.bz2 |
fix Makefile dependency
Diffstat (limited to 'macosx/GNUmakefile')
-rw-r--r-- | macosx/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/GNUmakefile b/macosx/GNUmakefile index 2b3b8bb..0bf1d04 100644 --- a/macosx/GNUmakefile +++ b/macosx/GNUmakefile @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution of # this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: GNUmakefile,v 1.9 2008/03/11 22:28:34 das Exp $ +# RCS: @(#) $Id: GNUmakefile,v 1.10 2008/05/06 16:33:07 das Exp $ # ######################################################################################################## @@ -76,7 +76,7 @@ OBJ_DIR = ${OBJROOT}/${BUILD_STYLE} empty := space := ${empty} ${empty} -objdir := $(subst ${space},\ ,${OBJ_DIR}) +objdir = $(subst ${space},\ ,${OBJ_DIR}) develop_make_args := BUILD_STYLE=Development CONFIGURE_ARGS=--enable-symbols deploy_make_args := BUILD_STYLE=Deployment INSTALL_TARGET=install-strip \ |