summaryrefslogtreecommitdiff
path: root/validate
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-05-19 13:55:35 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-05-20 10:45:10 -0400
commit36b8a57cb30c1374cce749b6f1554a2d438336b9 (patch)
tree3ccf03d5fe4810af943d726e205b1c3cd57a7618 /validate
parenta36d12ee19afa949da27ab73f082428830f3dba3 (diff)
downloadhaskell-36b8a57cb30c1374cce749b6f1554a2d438336b9.tar.gz
validate: Use $make rather than make
In the validate script we are careful to use the $make variable as this stores whether we are using gmake, make, quiet mode etc. There was just this one place where we failed to use it. Fixes #21598
Diffstat (limited to 'validate')
-rwxr-xr-xvalidate2
1 files changed, 1 insertions, 1 deletions
diff --git a/validate b/validate
index bc7c9f1abe..e6a8d91563 100755
--- a/validate
+++ b/validate
@@ -294,7 +294,7 @@ if [ $build_only -eq 1 ] ||
$hadrian binary-dist --docs=no-sphinx
cfgdir="$(dirname "$(find $hadrian_build_root/bindist/ -name 'configure' | head -1)")"
cd "$cfgdir"
- ./configure --prefix="$basedir/$bindistdir" && make install
+ ./configure --prefix="$basedir/$bindistdir" && $make install
cd "$basedir"
"$ghc" -e 'Data.Text.IO.putStrLn (Data.Text.pack "bindist test: OK")'
fi