aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2019-01-03 16:09:50 +0100
committerEduardo Habkost <ehabkost@redhat.com>2019-01-11 16:21:45 -0200
commit0acf7ded0c36613927027e810c7584209b6cac06 (patch)
tree64cabb1bdacae647a37d38611e285b6fc5e81cbf
parente53f7796fbe71a5c7c24ffebf04b4aa9a759da36 (diff)
downloadqemu-0acf7ded0c36613927027e810c7584209b6cac06.zip
qemu-0acf7ded0c36613927027e810c7584209b6cac06.tar.gz
qemu-0acf7ded0c36613927027e810c7584209b6cac06.tar.bz2
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é <philmd@redhat.com> Message-Id: <20190103150951.17592-2-philmd@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index cf763d4..0c433ec 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"