[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [UNIKRAFT PATCH 1/1] support/build: Remove newline from echo
Signed-off-by: Vlad-Andrei Badoiu <vlad_andrei.badoiu@xxxxxx> --- support/build/Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/build/Makefile.rules b/support/build/Makefile.rules index 80d874e..50e61fe 100644 --- a/support/build/Makefile.rules +++ b/support/build/Makefile.rules @@ -42,7 +42,7 @@ endef # test whether GCC version is greater than or equal to the minimum requirement # gcc_version_ge $gcc_major,$gcc_minor define gcc_version_ge = -$(shell if [ $(call have_gcc) = y ] ; then if [ $(CC_VER_MAJOR) -gt $(1) ] || ([ $(CC_VER_MAJOR) -eq $(1) ] && [ $(CC_VER_MINOR) -ge $(2) ]) ; then echo y ; fi ; fi) +$(shell if [ $(call have_gcc) = y ] ; then if [ $(CC_VER_MAJOR) -gt $(1) ] || ([ $(CC_VER_MAJOR) -eq $(1) ] && [ $(CC_VER_MINOR) -ge $(2) ]) ; then echo -n y ; fi ; fi) endef # print error and stop build when GCC version doesn't meet the minimum requirement -- 2.27.0
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |