From: Philippe Mathieu-Daudé Date: Thu, 3 Jan 2019 15:09:50 +0000 (+0100) Subject: configure: Let the TARGET_GPROF var use the regular 'y' for Yes X-Git-Tag: v4.0.0-rc0~172^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0acf7ded0c36613927027e810c7584209b6cac06;p=thirdparty%2Fqemu.git configure: Let the TARGET_GPROF var use the regular 'y' for Yes All other variables are set using 'y', which is what the rules.mak functions expect to parse. Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20190103150951.17592-2-philmd@redhat.com> Signed-off-by: Eduardo Habkost --- diff --git a/configure b/configure index cf763d46747..0c433ec0434 100755 --- a/configure +++ b/configure @@ -7490,7 +7490,7 @@ alpha) esac if test "$gprof" = "yes" ; then - echo "TARGET_GPROF=yes" >> $config_target_mak + echo "TARGET_GPROF=y" >> $config_target_mak if test "$target_linux_user" = "yes" ; then cflags="-p $cflags" ldflags="-p $ldflags"