[Lldb-commits] [lldb] r133466 - /lldb/trunk/test/make/Makefile.rules
Johnny Chen
johnny.chen at apple.com
Mon Jun 20 13:08:26 PDT 2011
Author: johnny
Date: Mon Jun 20 15:08:26 2011
New Revision: 133466
URL: http://llvm.org/viewvc/llvm-project?rev=133466&view=rev
Log:
Change to get around the nested ifeq woes on OS X Snow Leopard:
../make/Makefile.rules:217: *** missing `endif'. Stop.
Modified:
lldb/trunk/test/make/Makefile.rules
Modified: lldb/trunk/test/make/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/make/Makefile.rules?rev=133466&r1=133465&r2=133466&view=diff
==============================================================================
--- lldb/trunk/test/make/Makefile.rules (original)
+++ lldb/trunk/test/make/Makefile.rules Mon Jun 20 15:08:26 2011
@@ -113,10 +113,10 @@
# Make the dSYM file from the executable if $(MAKE_DSYM) != "NO"
#----------------------------------------------------------------------
ifeq "$(OS)" "Darwin"
- ifneq "$(MAKE_DSYM)" "NO"
+ifneq "$(MAKE_DSYM)" "NO"
$(DSYM) : $(EXE)
$(DS) $(DSFLAGS) -o "$(DSYM)" "$(EXE)"
- endif
+endif
endif
#----------------------------------------------------------------------
More information about the lldb-commits
mailing list