From c7eba2aa3d4605851ec2d1cf9fa04ea6dc1d5ebd Mon Sep 17 00:00:00 2001 From: Nathan Cutler Date: Fri, 19 Feb 2016 00:22:28 +0100 Subject: [PATCH] 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 --- src/yasm-wrapper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/yasm-wrapper b/src/yasm-wrapper index 36951920b042..9500d2faa1d8 100755 --- a/src/yasm-wrapper +++ b/src/yasm-wrapper @@ -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 \ No newline at end of file +true -- 2.47.3