[llvm-commits] CVS: llvm/projects/Stacker/lib/Makefile
Reid Spencer
reid at x10sys.com
Sat Nov 4 19:58:59 PST 2006
Changes in directory llvm/projects/Stacker/lib:
Makefile updated: 1.7 -> 1.8
---
Log message:
Don't check variables before they are set.
Be careful about blanks when checking LLVMGCC variable.
---
Diffs of the changes: (+3 -2)
Makefile | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Index: llvm/projects/Stacker/lib/Makefile
diff -u llvm/projects/Stacker/lib/Makefile:1.7 llvm/projects/Stacker/lib/Makefile:1.8
--- llvm/projects/Stacker/lib/Makefile:1.7 Mon Oct 2 14:10:56 2006
+++ llvm/projects/Stacker/lib/Makefile Sat Nov 4 21:58:44 2006
@@ -7,9 +7,10 @@
LEVEL = ..
DIRS = compiler runtime
+include $(LEVEL)/Makefile.common
+
# Don't generate the runtime if we don't have LLVMGCC
-ifeq ($(LLVMGCC),)
+ifeq ($(strip $(LLVMGCC)),)
DIRS := $(filter-out runtime, $(DIRS))
endif
-include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list