From 4521ea5a7998418efbb05bdc1b192452b6457e52 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 26 Jul 2009 13:47:50 +0000 Subject: [PATCH] run make clean before another compilation --- build_test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_test.sh b/build_test.sh index 2a90cc19..42b29173 100755 --- a/build_test.sh +++ b/build_test.sh @@ -25,6 +25,7 @@ build() fi ./configure $1 2>&1 | tee "$BUILDDIR/configure_$2.log"\ && cp config.log "$BUILDDIR/config.log_$2" \ + && LANG=C make clean \ && LANG=C make -j2 check 2>&1 |tee "$BUILDDIR/aria2c_$2.log" \ && cp src/aria2c "$BUILDDIR/aria2c_$2" }