From: Johannes Berg Date: Sun, 11 Oct 2020 09:01:03 +0000 (+0200) Subject: tests: build.sh: Remove 'make clean' steps X-Git-Tag: hostap_2_10~865 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7c11ad24990598e71105270f7627d57a431b508;p=thirdparty%2Fhostap.git tests: build.sh: Remove 'make clean' steps Since the build artifacts are now landing in distinct directories, we don't need to 'make clean' and save some rebuild time. Signed-off-by: Johannes Berg --- diff --git a/tests/hwsim/build.sh b/tests/hwsim/build.sh index 165d808fd..d8a78d705 100755 --- a/tests/hwsim/build.sh +++ b/tests/hwsim/build.sh @@ -28,17 +28,14 @@ done echo "Building TNC testing tools" cd tnc -make clean > /dev/null make QUIET=1 -j8 echo "Building wlantest" cd ../../../wlantest -make clean > /dev/null make QUIET=1 -j8 > /dev/null echo "Building hs20-osu-client" cd ../hs20/client/ -make clean > /dev/null 2>&1 make QUIET=1 CONFIG_NO_BROWSER=1 echo "Building hostapd" @@ -55,7 +52,6 @@ if [ $use_lcov -eq 1 ]; then fi fi -make clean > /dev/null make QUIET=1 -j8 hostapd hostapd_cli hlr_auc_gw echo "Building wpa_supplicant" @@ -72,7 +68,6 @@ if [ $use_lcov -eq 1 ]; then fi fi -make clean > /dev/null if [ -z $FIPSLD_CC ]; then export FIPSLD_CC=gcc fi