src/yasm-wrapper: ignore parameters starting with ggc-min

When the "with lowmem_builder" bcond is active, the string "--param
ggc-min-expand=20 --param ggc-min-heapsize=32768" is added to
RPM_OPT_FLAGS. In the course of the build, these parameters get passed on
to yasm-wrapper, making it unhappy.

http://tracker.ceph.com/issues/14811 Fixes: #14811

Signed-off-by: Nathan Cutler <ncutler@suse.com>
This commit is contained in:
Nathan Cutler 2016-02-19 00:22:28 +01:00
parent 78799a9c92
commit c7eba2aa3d

View File

@ -12,7 +12,7 @@ while [ -n "$*" ]; do
new="$new -f $1"
shift
;;
-g* | -f* | -W* | -MD | -MP | -fPIC | -c | -D* | --param* | -O* | -m* | -pipe )
-g* | -f* | -W* | -MD | -MP | -fPIC | -c | -D* | --param* | -O* | -m* | -pipe | ggc-min* )
shift
;;
-I )
@ -41,4 +41,4 @@ yasm $new
[ -n "$touch" ] && touch $touch
true
true