From 6a1316230cec1958a8ff42e663011872ee1180a8 Mon Sep 17 00:00:00 2001 From: thatcher Date: Mon, 20 Feb 2006 20:20:31 +0000 Subject: [PATCH] * Makefile.shared: Remove use of XcodeOptionStringNoConfig. We don't need it because commands like "make debug" have a side effect of setting the current configuration anyway. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@12902 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Makefile.shared | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile.shared b/Makefile.shared index 8cdb30b..04eb75a 100644 --- a/Makefile.shared +++ b/Makefile.shared @@ -1,16 +1,15 @@ XCODE_OPTIONS = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionString()'` -XCODE_OPTIONS_NO_CONFIG = `perl -I../WebKitTools/Scripts -Mwebkitdirs -e 'print XcodeOptionStringNoConfig()'` all: xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) debug d development dev develop: ../WebKitTools/Scripts/set-webkit-configuration --debug - xcodebuild $(OTHER_OPTIONS) -configuration Debug $(XCODE_OPTIONS_NO_CONFIG) + xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) release r deployment dep deploy: ../WebKitTools/Scripts/set-webkit-configuration --release - xcodebuild $(OTHER_OPTIONS) -configuration Release $(XCODE_OPTIONS_NO_CONFIG) + xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) clean: xcodebuild -alltargets clean $(XCODE_OPTIONS) -- 1.8.3.1