[Lldb-commits] [lldb] r149170 - in /lldb/tags/lldb-109: lldb.xcodeproj/project.pbxproj tools/debugserver/debugserver.xcodeproj/project.pbxproj
Greg Clayton
gclayton at apple.com
Fri Jan 27 19:14:56 PST 2012
Author: gclayton
Date: Fri Jan 27 21:14:56 2012
New Revision: 149170
URL: http://llvm.org/viewvc/llvm-project?rev=149170&view=rev
Log:
Removing the code signing shell script build phase as it isn't properly detecting
BuildAndIntegration builds.
Modified:
lldb/tags/lldb-109/lldb.xcodeproj/project.pbxproj
lldb/tags/lldb-109/tools/debugserver/debugserver.xcodeproj/project.pbxproj
Modified: lldb/tags/lldb-109/lldb.xcodeproj/project.pbxproj
URL: http://llvm.org/viewvc/llvm-project/lldb/tags/lldb-109/lldb.xcodeproj/project.pbxproj?rev=149170&r1=149169&r2=149170&view=diff
==============================================================================
--- lldb/tags/lldb-109/lldb.xcodeproj/project.pbxproj (original)
+++ lldb/tags/lldb-109/lldb.xcodeproj/project.pbxproj Fri Jan 27 21:14:56 2012
@@ -2947,7 +2947,6 @@
buildPhases = (
26DC6A0D1337FE6900FF7998 /* Sources */,
26DC6A0E1337FE6900FF7998 /* Frameworks */,
- 261CE9C014D327DE006D8EFE /* Codesign */,
);
buildRules = (
);
@@ -3079,20 +3078,6 @@
shellPath = /bin/sh;
shellScript = "cd \"${TARGET_BUILD_DIR}/${PUBLIC_HEADERS_FOLDER_PATH}\"\nfor file in *.h\ndo\n\t/usr/bin/sed -i '' 's/\\(#include\\)[ ]*\"lldb\\/\\(API\\/\\)\\{0,1\\}\\(.*\\)\"/\\1 <LLDB\\/\\3>/1' \"$file\"\n\t/usr/bin/sed -i '' 's|<LLDB/Utility|<LLDB|' \"$file\"\n\t/usr/bin/sed -i '' \"s|//#define LLDB_VERSION|#define LLDB_VERSION ${CURRENT_PROJECT_VERSION} |\" \"$file\"\ndone\n";
};
- 261CE9C014D327DE006D8EFE /* Codesign */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = Codesign;
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = "/bin/sh -x";
- shellScript = "if [ $CONFIGURATION!=\"BuildAndIntegration\" ]; then\n if [ $PLATFORM_NAME=\"macosx\" ]; then\n /usr/bin/codesign -s lldb_codesign -f \"$TARGET_BUILD_DIR/$TARGET_NAME\"\n fi\nfi";
- };
261EECA21337D399001D193C /* Build llvm and clang */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Modified: lldb/tags/lldb-109/tools/debugserver/debugserver.xcodeproj/project.pbxproj
URL: http://llvm.org/viewvc/llvm-project/lldb/tags/lldb-109/tools/debugserver/debugserver.xcodeproj/project.pbxproj?rev=149170&r1=149169&r2=149170&view=diff
==============================================================================
--- lldb/tags/lldb-109/tools/debugserver/debugserver.xcodeproj/project.pbxproj (original)
+++ lldb/tags/lldb-109/tools/debugserver/debugserver.xcodeproj/project.pbxproj Fri Jan 27 21:14:56 2012
@@ -366,7 +366,6 @@
26CE05C7115C36870022F371 /* ShellScript */,
26CE0591115C31C20022F371 /* Sources */,
26CE0592115C31C20022F371 /* Frameworks */,
- 261CE9BE14D327CC006D8EFE /* Codesign */,
);
buildRules = (
);
@@ -405,20 +404,6 @@
/* End PBXProject section */
/* Begin PBXShellScriptBuildPhase section */
- 261CE9BE14D327CC006D8EFE /* Codesign */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = Codesign;
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = "/bin/sh -x";
- shellScript = "if [ $CONFIGURATION!=\"BuildAndIntegration\" ]; then\n if [ $PLATFORM_NAME=\"macosx\" ]; then\n /usr/bin/codesign -s lldb_codesign -f \"$TARGET_BUILD_DIR/$TARGET_NAME\"\n fi\nfi";
- };
26CE05C7115C36870022F371 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
More information about the lldb-commits
mailing list