Fix shell commands that do code signing.

llvm-svn: 149171
This commit is contained in:
Jason Molenda 2012-01-28 04:19:15 +00:00
parent 3120dc6261
commit b10ebda354
2 changed files with 2 additions and 2 deletions

View File

@ -3091,7 +3091,7 @@
);
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";
shellScript = "if [ $CONFIGURATION != BuildAndIntegration -a $PLATFORM_NAME = macosx ]; then /usr/bin/codesign -s lldb_codesign -f \"$TARGET_BUILD_DIR/$TARGET_NAME\"; fi";
};
261EECA21337D399001D193C /* Build llvm and clang */ = {
isa = PBXShellScriptBuildPhase;

View File

@ -417,7 +417,7 @@
);
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";
shellScript = "if [ $CONFIGURATION != BuildAndIntegration -a $PLATFORM_NAME = macosx ]; then /usr/bin/codesign -s lldb_codesign -f \"$TARGET_BUILD_DIR/$TARGET_NAME\"; fi";
};
26CE05C7115C36870022F371 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;