[llvm-commits] [llvm] r101404 - /llvm/trunk/runtime/libprofile/Makefile

Daniel Dunbar daniel at zuster.org
Thu Apr 15 14:57:44 PDT 2010


Author: ddunbar
Date: Thu Apr 15 16:57:43 2010
New Revision: 101404

URL: http://llvm.org/viewvc/llvm-project?rev=101404&view=rev
Log:
Don't use absolute path for EXPORTED_SYMBOL_FILE, this breaks under the new
system.

Modified:
    llvm/trunk/runtime/libprofile/Makefile

Modified: llvm/trunk/runtime/libprofile/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/runtime/libprofile/Makefile?rev=101404&r1=101403&r2=101404&view=diff
==============================================================================
--- llvm/trunk/runtime/libprofile/Makefile (original)
+++ llvm/trunk/runtime/libprofile/Makefile Thu Apr 15 16:57:43 2010
@@ -17,6 +17,6 @@
 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





More information about the llvm-commits mailing list