[Lldb-commits] [PATCH] D11202: Remove shell-specific code from TestLoadUnload Makefile.
Greg Clayton
clayborg at gmail.com
Wed Jul 15 11:05:49 PDT 2015
clayborg requested changes to this revision.
clayborg added a comment.
This revision now requires changes to proceed.
Use the $(DS) variable and this will be good go.
================
Comment at: test/functionalities/load_unload/Makefile:28
@@ -28,1 +27,3 @@
+
+ DS_IF_DARWIN = dsymutil -o $@.dSYM $@
else
----------------
I believe our base makefile rules have a variable names $(DS) so this should probably be:
```
DS_IF_DARWIN = $(DS) -o $@.dSYM $@
```
http://reviews.llvm.org/D11202
More information about the lldb-commits
mailing list