readline: *Flags are lists
This commit is contained in:
parent
a085e9c061
commit
6aea513498
@ -12,13 +12,11 @@ stdenv.mkDerivation {
|
||||
|
||||
propagatedBuildInputs = [ncurses];
|
||||
|
||||
patchFlags = "-p0";
|
||||
patchFlags = [ "-p0" ];
|
||||
|
||||
configureFlags =
|
||||
stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
||||
[ # This test requires running host code
|
||||
"bash_cv_wcwidth_broken=no"
|
||||
];
|
||||
configureFlags = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
||||
# This test requires running host code
|
||||
"bash_cv_wcwidth_broken=no";
|
||||
|
||||
patches =
|
||||
[ ./link-against-ncurses.patch
|
||||
|
Loading…
Reference in New Issue
Block a user