gengetopt: Fix the build

Thanks @orivej for providing this fix.

Fix #28255 (the build was broken since
2bc7b4e134).
This commit is contained in:
Michael Weiss 2017-09-20 19:23:14 +02:00
parent 2c2cd34b54
commit 9182927998

View file

@ -10,6 +10,10 @@ stdenv.mkDerivation rec {
doCheck = true;
postPatch = ''
sed -e 's/set -o posix/set +o posix/' -i configure
'';
meta = {
description = "Command-line option parser generator";