diff mbox series

[v2,1/2] configure: Let the TARGET_GPROF var use the regular 'y' for Yes

Message ID 20190103150951.17592-2-philmd@redhat.com (mailing list archive)
State New, archived
Headers show
Series buildsys: Disable qht-bench parallel test when using gprof | expand

Commit Message

Philippe Mathieu-Daudé Jan. 3, 2019, 3:09 p.m. UTC
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>
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/configure b/configure
index 79375affc1..fa5c079f98 100755
--- a/configure
+++ b/configure
@@ -7470,7 +7470,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"