From 18d3b982b4c8f2acf43e0cd89f9114a5d82ee3e9 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 14 Dec 2004 22:44:05 +0000 Subject: [PATCH] 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 --- Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1