mirror of
https://github.com/ceph/ceph
synced 2025-03-11 02:39:05 +00:00
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:
parent
78799a9c92
commit
c7eba2aa3d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user