[llvm-commits] CVS: llvm/Makefile.rules

Reid Spencer reid at x10sys.com
Thu Feb 24 13:30:48 PST 2005



Changes in directory llvm:

Makefile.rules updated: 1.302 -> 1.303
---
Log message:

The install program doesn't know how to strip bytecode files so install
bytecode as data, not program.


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

 Makefile.rules |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.302 llvm/Makefile.rules:1.303
--- llvm/Makefile.rules:1.302	Thu Feb 24 01:12:43 2005
+++ llvm/Makefile.rules	Thu Feb 24 15:30:37 2005
@@ -594,7 +594,7 @@
 
 $(DestModule): $(ModuleDestDir) $(Module) 
 	$(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
-	$(Verb) $(ProgInstall) $(Module) $(DestModule)
+	$(Verb) $(DataInstall) $(Module) $(DestModule)
 
 uninstall-local::
 	$(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)






More information about the llvm-commits mailing list