aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-02-24 21:30:37 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-02-24 21:30:37 +0000
commit151bbe44acf022590a88a74cafebf25b71143b9e (patch)
tree9748ae21590e10f3991c5c60d9708218ca003ae3
parent29fbdd705acfc05f75707e218dba5b40b9a3f2bb (diff)
The install program doesn't know how to strip bytecode files so install
bytecode as data, not program. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20319 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index d3e4ff9a25..4397b2061d 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -594,7 +594,7 @@ install-local:: $(DestModule)
$(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)