Merge pull request #33576 from dtzWill/fix/cross-readline

readline: Don't attempt to check for broken wcwidth
This commit is contained in:
John Ericson 2018-01-08 03:00:31 -05:00 committed by GitHub
commit 0fb724507a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,6 +16,12 @@ stdenv.mkDerivation rec {
patchFlags = "-p0";
configureFlags =
stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
[ # This test requires running host code
"bash_cv_wcwidth_broken=no"
];
patches =
[ ./link-against-ncurses.patch
./no-arch_only-6.3.patch