diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2021-05-09 08:05:10 +0800 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-05-25 05:52:02 -0400 |
commit | 7b1eeabf5a2f27fc428b5154d5dbc81bcb6ea9e6 (patch) | |
tree | 9f2b4a3ff4143a3ff7596b7dcc45759579ad96fe /.gitlab | |
parent | 527543fc7c6eecd35573090ae64880bdf17c0812 (diff) | |
download | haskell-7b1eeabf5a2f27fc428b5154d5dbc81bcb6ea9e6.tar.gz |
[ci/darwin] set SH to /bin/bash
This should prevent some other `bash` to leak into the binary distributions.
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/shell.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/shell.nix b/.gitlab/shell.nix index 2f138202fd..554226050b 100644 --- a/.gitlab/shell.nix +++ b/.gitlab/shell.nix @@ -13,7 +13,7 @@ # we need to inject ncurses into --with-curses-libraries. # the real fix is to teach terminfo to use libcurses on macOS. # CONFIGURE_ARGS = "--with-intree-gmp --with-curses-libraries=${pkgs.ncurses.out}/lib"; - CONFIGURE_ARGS = "--with-intree-gmp --with-curses-libraries=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib --with-iconv-includes=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include --with-iconv-libraries=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib"; + CONFIGURE_ARGS = "--with-intree-gmp --with-curses-libraries=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib --with-iconv-includes=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include --with-iconv-libraries=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib SH=/bin/bash"; # magic speedup pony :facepalm: # |