diff options
author | Nick Kledzik <kledzik@apple.com> | 2008-02-27 22:23:46 +0000 |
---|---|---|
committer | Nick Kledzik <kledzik@apple.com> | 2008-02-27 22:23:46 +0000 |
commit | cfd72797b5328c9bb9328b7866a216c26bbec545 (patch) | |
tree | a4664d885ce249d938bc85fad5e92e0ef1b79ec2 | |
parent | ec59b95a19f59c075c74f01016a57218775b5d55 (diff) |
use PROJ_SRC_DIR so this builds with Apple style builds
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47694 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/lto2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lto2/Makefile b/tools/lto2/Makefile index 30f6ed8187..29a5ce3f10 100644 --- a/tools/lto2/Makefile +++ b/tools/lto2/Makefile @@ -36,7 +36,7 @@ ifeq ($(OS),Darwin) # extra options to override libtool defaults LLVMLibsOptions := $(LLVMLibsOptions) \ -no-undefined -avoid-version \ - -Wl,-exported_symbols_list -Wl,lto.exports \ + -Wl,-exported_symbols_list -Wl,$(PROJ_SRC_DIR)/lto.exports \ -Wl,-dead_strip \ -Wl,-install_name \ -Wl,"@executable_path/../lib/lib$(LIBRARYNAME)$(SHLIBEXT)" \ |