diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-05-19 13:55:35 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-05-20 10:45:10 -0400 |
commit | 36b8a57cb30c1374cce749b6f1554a2d438336b9 (patch) | |
tree | 3ccf03d5fe4810af943d726e205b1c3cd57a7618 /validate | |
parent | a36d12ee19afa949da27ab73f082428830f3dba3 (diff) | |
download | haskell-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-x | validate | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |