diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2017-09-30 11:53:16 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-10-02 17:16:51 -0400 |
commit | c0e6c73482881ac966a5fc12ef671d405af9262a (patch) | |
tree | 70bb5dfad1ec5899aad164cbff08b67cab856d76 /validate | |
parent | 0e9681268a38cbc15c9c2b50979624732c9077ce (diff) | |
download | haskell-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-x | validate | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |