From 31c5c6594799819249f88208f4a78951eeb70419 Mon Sep 17 00:00:00 2001 From: starkos Date: Thu, 20 Aug 2009 20:45:40 +0000 Subject: [PATCH] Premake now self-hosts --- src/actions/xcode/xcode_pbxproj.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/actions/xcode/xcode_pbxproj.lua b/src/actions/xcode/xcode_pbxproj.lua index d9bbd28d..f3e5cb31 100644 --- a/src/actions/xcode/xcode_pbxproj.lua +++ b/src/actions/xcode/xcode_pbxproj.lua @@ -311,7 +311,7 @@ _p('\t\t\tbuildSettings = {') _p('\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;') _p('\t\t\t\tCONFIGURATION_BUILD_DIR = %s;', cfg.buildtarget.directory) - _p('\t\t\t\tCONFIGURATION_TEMP_DIR = %s;', cfg.objectsdir) +-- _p('\t\t\t\tCONFIGURATION_TEMP_DIR = %s;', cfg.objectsdir) if cfg.flags.Symbols then _p('\t\t\t\tCOPY_PHASE_STRIP = NO;') end @@ -326,6 +326,7 @@ _p('\t\t\t\t);') end _p('\t\t\t\tPRODUCT_NAME = %s;', cfg.buildtarget.name) + _p('\t\t\t\tSYMROOT = %s;', cfg.objectsdir) _p('\t\t\t};') _p('\t\t\tname = %s;', cfg.name) _p('\t\t};')