summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-04-15 21:57:43 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-04-15 21:57:43 +0000
commit51faa37b4ecf3371d2ea90079b06795f9695db1d (patch)
treeb216541be4bbbe9b5d4bf5b3475b2a1097a5bae6 /runtime
parentb16b53b181939fa6112498a00005d1df40d6de86 (diff)
downloadllvm-51faa37b4ecf3371d2ea90079b06795f9695db1d.tar.gz
llvm-51faa37b4ecf3371d2ea90079b06795f9695db1d.tar.bz2
llvm-51faa37b4ecf3371d2ea90079b06795f9695db1d.tar.xz
Don't use absolute path for EXPORTED_SYMBOL_FILE, this breaks under the new
system. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101404 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/libprofile/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/libprofile/Makefile b/runtime/libprofile/Makefile
index 15e6779512..b3076c419f 100644
--- a/runtime/libprofile/Makefile
+++ b/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