diff options
author | Sean Callanan <scallanan@apple.com> | 2016-01-13 19:23:30 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2016-01-13 19:23:30 +0000 |
commit | f03dbb3cb54fe62b2cbfa9f439f74084f34c67d6 (patch) | |
tree | 0c26cf1de9ec09f15a576a59e4fc88cabe7b2393 /lldb | |
parent | e3391d7ef9da7fc0c442eccf0d78b6bbd961d445 (diff) | |
download | bcm5719-llvm-f03dbb3cb54fe62b2cbfa9f439f74084f34c67d6.tar.gz bcm5719-llvm-f03dbb3cb54fe62b2cbfa9f439f74084f34c67d6.zip |
Fixed a problem where the Xcode build put lldb's __init__.py in the wrong place.
Most of the time CONFIGURATION_BUILD_DIR and BUILT_PRODUCTS_DIR are the same,
but they are different in 'xcodebuild install' situations. The file needs to be
put into BUILT_PRODUCTS_DIR or lldb's Python interface doesn't work when lldb is
built using 'xcodebuild install'.
llvm-svn: 257653
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/lldb.xcodeproj/project.pbxproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/lldb.xcodeproj/project.pbxproj b/lldb/lldb.xcodeproj/project.pbxproj index 6c73ccd0801..5d66c4309be 100644 --- a/lldb/lldb.xcodeproj/project.pbxproj +++ b/lldb/lldb.xcodeproj/project.pbxproj @@ -6300,7 +6300,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "sh $SRCROOT/scripts/finish-swig-wrapper-classes.sh $SRCROOT $TARGET_BUILD_DIR $CONFIGURATION_BUILD_DIR \"\""; + shellScript = "sh $SRCROOT/scripts/finish-swig-wrapper-classes.sh $SRCROOT $TARGET_BUILD_DIR $BUILT_PRODUCTS_DIR \"\""; }; AF3059151B4B390800E25622 /* Run Script - remove unneeded Resources and Swift dirs from iOS LLDB.framework bundle */ = { isa = PBXShellScriptBuildPhase; |