[llvm] r223351 - test-release.sh: Correct the logged configure command to match the one actually issued.
Daniel Sanders
daniel.sanders at imgtec.com
Thu Dec 4 03:00:10 PST 2014
Author: dsanders
Date: Thu Dec 4 05:00:09 2014
New Revision: 223351
URL: http://llvm.org/viewvc/llvm-project?rev=223351&view=rev
Log:
test-release.sh: Correct the logged configure command to match the one actually issued.
--disable-timestamps was added to the configure command way back in r142647 but
the command that echos this command to the log was not updated at the time.
Modified:
llvm/trunk/utils/release/test-release.sh
Modified: llvm/trunk/utils/release/test-release.sh
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/release/test-release.sh?rev=223351&r1=223350&r2=223351&view=diff
==============================================================================
--- llvm/trunk/utils/release/test-release.sh (original)
+++ llvm/trunk/utils/release/test-release.sh Thu Dec 4 05:00:09 2014
@@ -299,7 +299,8 @@ function configure_llvmCore() {
echo "# Configuring llvm $Release-$RC $Flavor"
echo "# $BuildDir/llvm.src/configure --prefix=$InstallDir \
--enable-optimized=$Optimized \
- --enable-assertions=$Assertions"
+ --enable-assertions=$Assertions \
+ --disable-timestamps"
env CC="$c_compiler" CXX="$cxx_compiler" \
$BuildDir/llvm.src/configure --prefix=$InstallDir \
--enable-optimized=$Optimized \
More information about the llvm-commits
mailing list