[Lldb-commits] [lldb] r360304 - Fix the output file dependency for Options.inc.
Jim Ingham via lldb-commits
lldb-commits at lists.llvm.org
Wed May 8 18:43:27 PDT 2019
Author: jingham
Date: Wed May 8 18:43:27 2019
New Revision: 360304
URL: http://llvm.org/viewvc/llvm-project?rev=360304&view=rev
Log:
Fix the output file dependency for Options.inc.
The script phase to do Options.td -> Options.inc was
wrong (missing the "include" directory) so the rule didn't
get run when Options.td changed.
Modified:
lldb/trunk/lldb.xcodeproj/project.pbxproj
Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lldb.xcodeproj/project.pbxproj?rev=360304&r1=360303&r2=360304&view=diff
==============================================================================
--- lldb/trunk/lldb.xcodeproj/project.pbxproj (original)
+++ lldb/trunk/lldb.xcodeproj/project.pbxproj Wed May 8 18:43:27 2019
@@ -7695,7 +7695,7 @@
outputFileListPaths = (
);
outputPaths = (
- $BUILT_PRODUCTS_DIR/Options.inc,
+ $BUILT_PRODUCTS_DIR/include/Options.inc,
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
More information about the lldb-commits
mailing list