aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-14 22:44:05 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-14 22:44:05 +0000
commit18d3b982b4c8f2acf43e0cd89f9114a5d82ee3e9 (patch)
tree6711740d20c05b9588b85f50a41dcb12228678b4
parentfed8a142e55cb6d849ec8dfc6835c24184ac0663 (diff)
Fix the default install directory of modules from / to $(libdir) !
Many thanks to Vladimir Merzliakov for pointing this out! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18942 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 897905f7ae..efc1b8ea1d 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -510,7 +510,7 @@ endif
ifdef BYTECODE_DESTINATION
ModuleDestDir := $(BYTECODE_DESTINATION)
else
-ModuleDestDir := $(BYTECODE_DESTINATION)
+ModuleDestDir := $(libdir)
endif
DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc