From: ptools Date: Mon, 28 Jun 2004 00:43:59 +0000 (+0000) Subject: Fixed Linux gmake problem. X-Git-Tag: v1.1.0~822 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=a96c29f74741acfbfc938a89fd88725af64292d8;p=users%2Fhch%2Fxfstests-dev.git Fixed Linux gmake problem. Fixed Linux gmake problem. --- diff --git a/common.config b/common.config index 22cfb1c5f..43acb535d 100644 --- a/common.config +++ b/common.config @@ -74,6 +74,9 @@ MODULAR=0 # using XFS as a module or not BOOT="/boot" # install target for kernels export EXTRA=${EXTRA:=xfs-qa} +MAKE=make +[ "$HOSTOS" == "IRIX" ] && MAKE=gmake + # general parameters (mainly for auto-qa) SOAK_PROC=3 # -p option to fsstress SOAK_STRESS=10000 # -n option to fsstress @@ -141,8 +144,8 @@ export PERL_PROG="`set_prog_path perl`" export SED_PROG="`set_prog_path sed`" [ "$SED_PROG" = "" ] && _fatal "sed not found" -export MAKE_PROG="`set_prog_path gmake`" -[ "$MAKE_PROG" = "" ] && _fatal "gmake not found" +export MAKE_PROG="`set_prog_path $MAKE`" +[ "$MAKE_PROG" = "" ] && _fatal "$MAKE not found" export PS_ALL_FLAGS="-ef"