diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2017-09-25 18:41:23 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-09-25 22:43:52 -0400 |
commit | 65f7d87a9bd43a6dfc077fbcb8781de07dd335c1 (patch) | |
tree | 1d27d4410e86990d069b8c50d5eda266245a09dd /mk | |
parent | 49c1a20dbbdabc8101877e8ef2c8de9ec3a079d0 (diff) | |
download | haskell-65f7d87a9bd43a6dfc077fbcb8781de07dd335c1.tar.gz |
configure: Don't hard-code strip tool
For reasons that I don't entirely understand we didn't previously detect
`strip` using autoconf. This naturally broke during cross-compilation.
How did this ever work? I have no idea.
Test Plan: Try cross-compiling
Reviewers: austin, hvr, angerman
Subscribers: rwbarton, thomie, erikd
Differential Revision: https://phabricator.haskell.org/D4008
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index ac1512e7b7..92661a32d1 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -775,7 +775,7 @@ else ifeq "$(TARGETPLATFORM)" "arm-unknown-linux" # The hack of using `:` to disable stripping is implemented by ghc-cabal. STRIP_CMD = : else -STRIP_CMD = strip +STRIP_CMD = @StripCmd@ endif PATCH_CMD = @PatchCmd@ TAR_CMD = @TarCmd@ |