[llvm-commits] CVS: llvm/Makefile.rules
Reid Spencer
reid at x10sys.com
Wed Dec 15 23:15:27 PST 2004
Changes in directory llvm:
Makefile.rules updated: 1.267 -> 1.268
---
Log message:
Fix a major bug with BUILT_SOURCES. You actually have to dereference a
variable before you can filter its value. Duh!
---
Diffs of the changes: (+1 -1)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.267 llvm/Makefile.rules:1.268
--- llvm/Makefile.rules:1.267 Thu Dec 16 01:14:19 2004
+++ llvm/Makefile.rules Thu Dec 16 01:15:16 2004
@@ -74,7 +74,7 @@
#------------------------------------------------------------------------
# Make sure the BUILT_SOURCES are built first
#------------------------------------------------------------------------
-$(filter-out clean clean-local,UserTargets):: $(BUILT_SOURCES)
+$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
clean-local::
ifneq ($(strip $(BUILT_SOURCES)),)
More information about the llvm-commits
mailing list