Skip to content

Commit 9182927

Browse files
committedSep 20, 2017
gengetopt: Fix the build
Thanks @orivej for providing this fix. Fix #28255 (the build was broken since 2bc7b4e).
1 parent 2c2cd34 commit 9182927

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

Diff for: ‎pkgs/development/tools/misc/gengetopt/default.nix

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ stdenv.mkDerivation rec {
1010

1111
doCheck = true;
1212

13+
postPatch = ''
14+
sed -e 's/set -o posix/set +o posix/' -i configure
15+
'';
16+
1317
meta = {
1418
description = "Command-line option parser generator";
1519

0 commit comments

Comments
 (0)
Please sign in to comment.