diff options
author | Mihai Moldovan <ionic@ionic.de> | 2017-12-19 16:06:06 +0100 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2017-12-19 16:23:36 +0100 |
commit | 75767979e5691195e5daa040e3b8669aae06c0cc (patch) | |
tree | c2717a301cc513389702eb77337e361654c187ce | |
parent | ef28eb4720cc80fe78b966ef95e4ce5638650c9e (diff) | |
download | nx-libs-75767979e5691195e5daa040e3b8669aae06c0cc.tar.gz nx-libs-75767979e5691195e5daa040e3b8669aae06c0cc.tar.bz2 nx-libs-75767979e5691195e5daa040e3b8669aae06c0cc.zip |
nx-libs.spec: make sure pass additional configure flags through, not discard them.
Fixes RPM builds building libNX_X11 with poll() support, even though we
explicitly disable it using --disable-poll in the main Makefile.
Fixes: ArcticaProject/nx-libs#540
-rw-r--r-- | nx-libs.spec | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nx-libs.spec b/nx-libs.spec index 87cb656be..e973137d7 100644 --- a/nx-libs.spec +++ b/nx-libs.spec @@ -402,7 +402,8 @@ sed -i -e 's/Wpedantic/pedantic/g' nx-X11/config/cf/{{host,xorgsite}.def,xorg.cf %build cat >"my_configure" <<'EOF' %configure \ - --disable-silent-rules + --disable-silent-rules \ + "${@}" EOF chmod a+x my_configure; # The RPM macro for the linker flags does not exist on EPEL |