[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] build: fix grep invocation in cc-options
# HG changeset patch # User Keir Fraser <keir@xxxxxxx> # Date 1317413867 -3600 # Node ID 3d1664cc9e458809e399320204aca8536e401ee1 # Parent 2215d7d7382617adbe97831fe35752a027917d1d build: fix grep invocation in cc-options Currently the build produces lots of Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more information. This is due to the "grep -- $(2)" in cc-options. It seems that the default of reading stdin is disabled when using "--". I don't know if this is a bug in grep or how it is supposed to be but we can work around it by explicitly passing in "-" Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Committed-by: Keir Fraser <keir@xxxxxxx> --- diff -r 2215d7d73826 -r 3d1664cc9e45 Config.mk --- a/Config.mk Fri Sep 30 21:16:43 2011 +0100 +++ b/Config.mk Fri Sep 30 21:17:47 2011 +0100 @@ -84,7 +84,7 @@ # # Usage: cflags-y += $(call cc-option,$(CC),-march=winchip-c6,-march=i586) cc-option = $(shell if test -z "`echo 'void*p=1;' | \ - $(1) $(2) -S -o /dev/null -xc - 2>&1 | grep -- $(2)`"; \ + $(1) $(2) -S -o /dev/null -xc - 2>&1 | grep -- $(2) -`"; \ then echo "$(2)"; else echo "$(3)"; fi ;) # cc-option-add: Add an option to compilation flags, but only if supported. _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |