diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-04-15 21:57:43 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-04-15 21:57:43 +0000 |
commit | 73fa3246094152dc564d0b8ad127fc9b6f18d387 (patch) | |
tree | 03dad4263de4721488ed619dc549cffd4e0da9a1 | |
parent | a96a8eebbb075e418716921041f4608f969a3148 (diff) | |
download | bcm5719-llvm-73fa3246094152dc564d0b8ad127fc9b6f18d387.tar.gz bcm5719-llvm-73fa3246094152dc564d0b8ad127fc9b6f18d387.zip |
Don't use absolute path for EXPORTED_SYMBOL_FILE, this breaks under the new
system.
llvm-svn: 101404
-rw-r--r-- | llvm/runtime/libprofile/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/runtime/libprofile/Makefile b/llvm/runtime/libprofile/Makefile index 15e67795129..b3076c419f6 100644 --- a/llvm/runtime/libprofile/Makefile +++ b/llvm/runtime/libprofile/Makefile @@ -17,6 +17,6 @@ SHARED_LIBRARY = 1 LOADABLE_MODULE = 1 LIBRARYNAME = profile_rt EXTRA_DIST = exported_symbols.lst -EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/exported_symbols.lst +EXPORTED_SYMBOL_FILE = exported_symbols.lst include $(LEVEL)/Makefile.common |