[llvm-commits] CVS: llvm/projects/Makefile

Reid Spencer reid at x10sys.com
Fri Sep 3 15:25:51 PDT 2004



Changes in directory llvm/projects:

Makefile updated: 1.7 -> 1.8
---
Log message:

Correct the specification of the DIRS variable to not include the source
directory prefix, just the name of the subdirectory. This prevents the
makefile from trying to find makefiles (like Makefile.common) in the wrong 
place.


---
Diffs of the changes:  (+1 -1)

Index: llvm/projects/Makefile
diff -u llvm/projects/Makefile:1.7 llvm/projects/Makefile:1.8
--- llvm/projects/Makefile:1.7	Mon Aug 23 12:47:16 2004
+++ llvm/projects/Makefile	Fri Sep  3 17:25:40 2004
@@ -10,6 +10,6 @@
 
 include $(LEVEL)/Makefile.config
 
-DIRS:= $(patsubst %/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))
+DIRS:= $(patsubst $(SourceDir)%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))
 
 include $(BUILD_SRC_ROOT)/Makefile.rules






More information about the llvm-commits mailing list