[llvm-commits] [llvm] r39939 - /llvm/trunk/build-for-llvm-top.sh

Reid Spencer rspencer at reidspencer.com
Mon Jul 16 15:54:43 PDT 2007


Author: reid
Date: Mon Jul 16 17:54:42 2007
New Revision: 39939

URL: http://llvm.org/viewvc/llvm-project?rev=39939&view=rev
Log:
No, we're not looking for a directory named /config.status.
Sigh .. fix copy & paste error.

Modified:
    llvm/trunk/build-for-llvm-top.sh

Modified: llvm/trunk/build-for-llvm-top.sh
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/build-for-llvm-top.sh?rev=39939&r1=39938&r2=39939&view=diff

==============================================================================
--- llvm/trunk/build-for-llvm-top.sh (original)
+++ llvm/trunk/build-for-llvm-top.sh Mon Jul 16 17:54:42 2007
@@ -20,8 +20,7 @@
 
 # See if we have previously been configured by sensing the presense
 # of the config.status scripts
-config_status="$build_dir/config.status"
-if test ! -d "$config_status" ; then
+if test ! -x "config.status" ; then
   # We must configure so build a list of configure options
   config_options="--prefix=$PREFIX --with-llvmgccdir=$PREFIX"
   config_options="$config_options $config_opts"





More information about the llvm-commits mailing list