diff options
author | Mark Lentczner <mzero@google.com> | 2011-04-14 14:38:48 -0700 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-04-22 13:08:02 +0100 |
commit | 928f2cca01e0d856af0bce20da951677889b123e (patch) | |
tree | d2a7e08ccac397815669c4a3bf5d03e9c749a8d8 /libffi | |
parent | 854eb5d52b12b42024db4b09c3663b20c5895885 (diff) | |
download | haskell-928f2cca01e0d856af0bce20da951677889b123e.tar.gz |
no need to set --build when configuring libffi
The value --build was set to broke cross-compilier builds, and isn't
needed for regular builds.
Diffstat (limited to 'libffi')
-rw-r--r-- | libffi/ghc.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libffi/ghc.mk b/libffi/ghc.mk index 080c43f850..2edbc4177c 100644 --- a/libffi/ghc.mk +++ b/libffi/ghc.mk @@ -125,7 +125,7 @@ $(libffi_STAMP_CONFIGURE): "$(SHELL)" configure \ --enable-static=yes \ --enable-shared=$(libffi_EnableShared) \ - --host=$(PLATFORM) --build=$(PLATFORM) + --host=$(PLATFORM) # libffi.so needs to be built with the correct soname. # NOTE: this builds libffi_convience.so with the incorrect @@ -227,4 +227,3 @@ $(eval $(call manual-package-config,libffi)) # binary-dist BINDIST_EXTRAS += libffi/package.conf.in - |