From c944ea3cde08ebb50caaaa120fa83600f9bad117 Mon Sep 17 00:00:00 2001 From: Daniel Sanders Date: Thu, 4 Dec 2014 11:00:09 +0000 Subject: [PATCH] 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. llvm-svn: 223351 --- utils/release/test-release.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/release/test-release.sh b/utils/release/test-release.sh index b0289248656..a4fa76ed452 100755 --- a/utils/release/test-release.sh +++ b/utils/release/test-release.sh @@ -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 \