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 /configure.ac | |
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 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 009bea0c58..0416e83be2 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,7 @@ AC_INIT([The Glorious Glasgow Haskell Compilation System], [8.3], [glasgow-haske # when the source distribution was created. if test ! -f mk/config.h.in; then - echo "mk/config.h.in doesn't exist: perhaps you haven't run 'perl boot'?" + echo "mk/config.h.in doesn't exist: perhaps you haven't run 'python3 boot'?" exit 1 fi |