summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das@noemail.net>2008-05-06 16:33:20 (GMT)
committerdas <das@noemail.net>2008-05-06 16:33:20 (GMT)
commit87b24cb078dd39889b81f0c57be5db9ead3706e8 (patch)
tree8817d1eaf5a5b8892e144bb4feb06c1b4a525d4d
parentcb83f2570016fc93088c59967fda9c6221add4dd (diff)
downloadtk-87b24cb078dd39889b81f0c57be5db9ead3706e8.zip
tk-87b24cb078dd39889b81f0c57be5db9ead3706e8.tar.gz
tk-87b24cb078dd39889b81f0c57be5db9ead3706e8.tar.bz2
fix Makefile dependency
FossilOrigin-Name: e03946e876231ba117c483d5351326ba3e50bd20
-rw-r--r--macosx/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/GNUmakefile b/macosx/GNUmakefile
index 771ce4c..38a815d 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:33:22 das Exp $
+# RCS: @(#) $Id: GNUmakefile,v 1.10 2008/05/06 16:33:20 das Exp $
#
########################################################################################################
@@ -86,7 +86,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