[llvm-commits] [support] r44765 - /support/trunk/Makefile.common.in

Reid Spencer rspencer at reidspencer.com
Sun Dec 9 19:14:50 PST 2007


Author: reid
Date: Sun Dec  9 21:14:50 2007
New Revision: 44765

URL: http://llvm.org/viewvc/llvm-project?rev=44765&view=rev
Log:
Make WANT_PROFILING use an immediate assignment like the other variables in this
file.

Modified:
    support/trunk/Makefile.common.in

Modified: support/trunk/Makefile.common.in
URL: http://llvm.org/viewvc/llvm-project/support/trunk/Makefile.common.in?rev=44765&r1=44764&r2=44765&view=diff

==============================================================================
--- support/trunk/Makefile.common.in (original)
+++ support/trunk/Makefile.common.in Sun Dec  9 21:14:50 2007
@@ -173,7 +173,7 @@
 
 # When ENABLE_PROFILING is enabled, the llvm source base is built with profile
 # information to allow gprof to be used to get execution frequencies.
-WANT_PROFILING = @WANT_PROFILING@
+WANT_PROFILING := @WANT_PROFILING@
 
 # When WANT_STRIPPED is enabled, executables and libraries will be
 # stripped of debug symbols





More information about the llvm-commits mailing list