summaryrefslogtreecommitdiff
path: root/validate
diff options
context:
space:
mode:
authorBen Gamari <bgamari.foss@gmail.com>2017-09-30 11:53:16 -0400
committerBen Gamari <ben@smart-cactus.org>2017-10-02 17:16:51 -0400
commitc0e6c73482881ac966a5fc12ef671d405af9262a (patch)
tree70bb5dfad1ec5899aad164cbff08b67cab856d76 /validate
parent0e9681268a38cbc15c9c2b50979624732c9077ce (diff)
downloadhaskell-c0e6c73482881ac966a5fc12ef671d405af9262a.tar.gz
Rewrite boot in Python
One step closer to being able to drop the Windows Perl tarball. We previously attempted to do this in D3567 but were forced to revert due to Windows problems. Acknowledgements: * @Phyx kindly contributed the codepath allowing this to work on Windows. Test Plan: Validate Reviewers: hvr, austin, Phyx Subscribers: erikd, thomie, rwbarton Differential Revision: https://phabricator.haskell.org/D3918
Diffstat (limited to 'validate')
-rwxr-xr-xvalidate4
1 files changed, 2 insertions, 2 deletions
diff --git a/validate b/validate
index d885bd76ba..77bc002fb2 100755
--- a/validate
+++ b/validate
@@ -181,9 +181,9 @@ if [ $no_clean -eq 0 ]; then
INSTDIR="$thisdir/inst"
if [ $use_dph -eq 1 ]; then
- perl -w boot --validate --required-tag=dph
+ python3 ./boot --validate --required-tag=dph
else
- perl -w boot --validate
+ python3 ./boot --validate
fi
./configure --prefix="$INSTDIR" $config_args
fi