From: Reid Spencer Date: Tue, 14 Dec 2004 22:44:05 +0000 (+0000) Subject: Fix the default install directory of modules from / to $(libdir) ! X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=18d3b982b4c8f2acf43e0cd89f9114a5d82ee3e9;p=oota-llvm.git 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 --- diff --git a/Makefile.rules b/Makefile.rules index 897905f7ae0..efc1b8ea1d9 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