[PATCH] configure: warn if not using a separate build directory

Daniel P. Berrangé posted 1 patch 4 years ago
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test checkpatch passed
Test FreeBSD passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200331103758.370644-1-berrange@redhat.com
There is a newer version of this series
configure | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
[PATCH] configure: warn if not using a separate build directory
Posted by Daniel P. Berrangé 4 years ago
Running configure directly from the source directory is a build
configuration that will go away in future. It is also not currently
covered by any automated testing. Display a deprecation warning if
the user attempts to use an in-srcdir build setup, so that they are
aware that they're building QEMU in an undesirable manner.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
 configure | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/configure b/configure
index e225a1e3ff..1ab7492ab5 100755
--- a/configure
+++ b/configure
@@ -3,6 +3,19 @@
 # qemu configure script (c) 2003 Fabrice Bellard
 #
 
+BUILDDIR=$(pwd)
+SRCDIR=$(dirname "$0")
+
+ABS_BUILDDIR=$(realpath $BUILDDIR)
+ABS_SRCDIR=$(realpath $SRCDIR)
+
+in_srcdir=no
+if [ "$ABS_SRCDIR" == "$ABS_BUILDDIR" ]
+then
+    in_srcdir=yes
+fi
+
+
 # Unset some variables known to interfere with behavior of common tools,
 # just as autoconf does.
 CLICOLOR_FORCE= GREP_OPTIONS=
@@ -6799,6 +6812,23 @@ if test "$supported_os" = "no"; then
     echo "us upstream at qemu-devel@nongnu.org."
 fi
 
+if test "$in_srcdir" = "yes"; then
+    echo
+    echo "WARNING: SUPPORT FOR IN SOURCE DIR BUILDS IS DEPRECATED"
+    echo
+    echo "Support for running the 'configure' script directly from the"
+    echo "source directory is deprecated and will go away in a future"
+    echo "release. In source dir builds are not covered by automated"
+    echo "testing and are liable to break without warning. Users are"
+    echo "strongly recommended to switch to a separate build directory:"
+    echo
+    echo "  $ mkdir build"
+    echo "  $ cd build"
+    echo "  $ ../configure"
+    echo "  $ make"
+    echo
+fi
+
 config_host_mak="config-host.mak"
 
 echo "# Automatically generated by configure - do not modify" >config-all-disas.mak
-- 
2.24.1


Re: [PATCH] configure: warn if not using a separate build directory
Posted by Philippe Mathieu-Daudé 4 years ago
On 3/31/20 12:37 PM, Daniel P. Berrangé wrote:
> Running configure directly from the source directory is a build
> configuration that will go away in future. It is also not currently
> covered by any automated testing. Display a deprecation warning if
> the user attempts to use an in-srcdir build setup, so that they are
> aware that they're building QEMU in an undesirable manner.
> 
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
>   configure | 30 ++++++++++++++++++++++++++++++
>   1 file changed, 30 insertions(+)
> 
> diff --git a/configure b/configure
> index e225a1e3ff..1ab7492ab5 100755
> --- a/configure
> +++ b/configure
> @@ -3,6 +3,19 @@
>   # qemu configure script (c) 2003 Fabrice Bellard
>   #
>   
> +BUILDDIR=$(pwd)
> +SRCDIR=$(dirname "$0")

This duplicates $source_path.
Maybe you can rename it $source_path and remove the $source_path 
assignment later.

> +
> +ABS_BUILDDIR=$(realpath $BUILDDIR)
> +ABS_SRCDIR=$(realpath $SRCDIR)
> +
> +in_srcdir=no
> +if [ "$ABS_SRCDIR" == "$ABS_BUILDDIR" ]
> +then
> +    in_srcdir=yes
> +fi
> +
> +
>   # Unset some variables known to interfere with behavior of common tools,
>   # just as autoconf does.
>   CLICOLOR_FORCE= GREP_OPTIONS=
> @@ -6799,6 +6812,23 @@ if test "$supported_os" = "no"; then
>       echo "us upstream at qemu-devel@nongnu.org."
>   fi
>   
> +if test "$in_srcdir" = "yes"; then
> +    echo
> +    echo "WARNING: SUPPORT FOR IN SOURCE DIR BUILDS IS DEPRECATED"
> +    echo
> +    echo "Support for running the 'configure' script directly from the"
> +    echo "source directory is deprecated and will go away in a future"
> +    echo "release. In source dir builds are not covered by automated"
> +    echo "testing and are liable to break without warning. Users are"
> +    echo "strongly recommended to switch to a separate build directory:"
> +    echo
> +    echo "  $ mkdir build"
> +    echo "  $ cd build"
> +    echo "  $ ../configure"
> +    echo "  $ make"
> +    echo
> +fi

I'd move it at the very end of the file, to be the last thing displayed.

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> +
>   config_host_mak="config-host.mak"
>   
>   echo "# Automatically generated by configure - do not modify" >config-all-disas.mak
> 


Re: [PATCH] configure: warn if not using a separate build directory
Posted by Daniel P. Berrangé 4 years ago
On Tue, Mar 31, 2020 at 01:11:45PM +0200, Philippe Mathieu-Daudé wrote:
> On 3/31/20 12:37 PM, Daniel P. Berrangé wrote:
> > Running configure directly from the source directory is a build
> > configuration that will go away in future. It is also not currently
> > covered by any automated testing. Display a deprecation warning if
> > the user attempts to use an in-srcdir build setup, so that they are
> > aware that they're building QEMU in an undesirable manner.
> > 
> > Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> > ---
> >   configure | 30 ++++++++++++++++++++++++++++++
> >   1 file changed, 30 insertions(+)
> > 
> > diff --git a/configure b/configure
> > index e225a1e3ff..1ab7492ab5 100755
> > --- a/configure
> > +++ b/configure
> > @@ -3,6 +3,19 @@
> >   # qemu configure script (c) 2003 Fabrice Bellard
> >   #
> > +BUILDDIR=$(pwd)
> > +SRCDIR=$(dirname "$0")
> 
> This duplicates $source_path.
> Maybe you can rename it $source_path and remove the $source_path assignment
> later.

Sure, could do that..

> 
> > +
> > +ABS_BUILDDIR=$(realpath $BUILDDIR)
> > +ABS_SRCDIR=$(realpath $SRCDIR)
> > +
> > +in_srcdir=no
> > +if [ "$ABS_SRCDIR" == "$ABS_BUILDDIR" ]
> > +then
> > +    in_srcdir=yes
> > +fi
> > +
> > +
> >   # Unset some variables known to interfere with behavior of common tools,
> >   # just as autoconf does.
> >   CLICOLOR_FORCE= GREP_OPTIONS=
> > @@ -6799,6 +6812,23 @@ if test "$supported_os" = "no"; then
> >       echo "us upstream at qemu-devel@nongnu.org."
> >   fi
> > +if test "$in_srcdir" = "yes"; then
> > +    echo
> > +    echo "WARNING: SUPPORT FOR IN SOURCE DIR BUILDS IS DEPRECATED"
> > +    echo
> > +    echo "Support for running the 'configure' script directly from the"
> > +    echo "source directory is deprecated and will go away in a future"
> > +    echo "release. In source dir builds are not covered by automated"
> > +    echo "testing and are liable to break without warning. Users are"
> > +    echo "strongly recommended to switch to a separate build directory:"
> > +    echo
> > +    echo "  $ mkdir build"
> > +    echo "  $ cd build"
> > +    echo "  $ ../configure"
> > +    echo "  $ make"
> > +    echo
> > +fi
> 
> I'd move it at the very end of the file, to be the last thing displayed.

You can't see it from the diff, but immediately before here are a bunch
of other big warnings for users, so I figured it was a good idea to keep
them all together.

> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> 
> > +
> >   config_host_mak="config-host.mak"
> >   echo "# Automatically generated by configure - do not modify" >config-all-disas.mak
> > 
> 

Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|


Re: [PATCH] configure: warn if not using a separate build directory
Posted by Philippe Mathieu-Daudé 4 years ago
On 3/31/20 1:41 PM, Daniel P. Berrangé wrote:
> On Tue, Mar 31, 2020 at 01:11:45PM +0200, Philippe Mathieu-Daudé wrote:
>> On 3/31/20 12:37 PM, Daniel P. Berrangé wrote:
>>> Running configure directly from the source directory is a build
>>> configuration that will go away in future. It is also not currently
>>> covered by any automated testing. Display a deprecation warning if
>>> the user attempts to use an in-srcdir build setup, so that they are
>>> aware that they're building QEMU in an undesirable manner.
>>>
>>> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
>>> ---
>>>    configure | 30 ++++++++++++++++++++++++++++++
>>>    1 file changed, 30 insertions(+)
>>>
>>> diff --git a/configure b/configure
>>> index e225a1e3ff..1ab7492ab5 100755
>>> --- a/configure
>>> +++ b/configure
>>> @@ -3,6 +3,19 @@
>>>    # qemu configure script (c) 2003 Fabrice Bellard
>>>    #
>>> +BUILDDIR=$(pwd)
>>> +SRCDIR=$(dirname "$0")
>>
>> This duplicates $source_path.
>> Maybe you can rename it $source_path and remove the $source_path assignment
>> later.
> 
> Sure, could do that..
> 
>>
>>> +
>>> +ABS_BUILDDIR=$(realpath $BUILDDIR)
>>> +ABS_SRCDIR=$(realpath $SRCDIR)
>>> +
>>> +in_srcdir=no
>>> +if [ "$ABS_SRCDIR" == "$ABS_BUILDDIR" ]
>>> +then
>>> +    in_srcdir=yes
>>> +fi
>>> +
>>> +
>>>    # Unset some variables known to interfere with behavior of common tools,
>>>    # just as autoconf does.
>>>    CLICOLOR_FORCE= GREP_OPTIONS=
>>> @@ -6799,6 +6812,23 @@ if test "$supported_os" = "no"; then
>>>        echo "us upstream at qemu-devel@nongnu.org."
>>>    fi
>>> +if test "$in_srcdir" = "yes"; then
>>> +    echo
>>> +    echo "WARNING: SUPPORT FOR IN SOURCE DIR BUILDS IS DEPRECATED"
>>> +    echo
>>> +    echo "Support for running the 'configure' script directly from the"
>>> +    echo "source directory is deprecated and will go away in a future"
>>> +    echo "release. In source dir builds are not covered by automated"
>>> +    echo "testing and are liable to break without warning. Users are"
>>> +    echo "strongly recommended to switch to a separate build directory:"
>>> +    echo
>>> +    echo "  $ mkdir build"
>>> +    echo "  $ cd build"
>>> +    echo "  $ ../configure"
>>> +    echo "  $ make"
>>> +    echo
>>> +fi
>>
>> I'd move it at the very end of the file, to be the last thing displayed.
> 
> You can't see it from the diff, but immediately before here are a bunch
> of other big warnings for users, so I figured it was a good idea to keep
> them all together.

IMO we should move them to the end too.

I'm getting this output:

$ ./configure
[...]
plugin support    no
fuzzing support   no
gdb               /usr/bin/gdb

WARNING: SUPPORT FOR IN SOURCE DIR BUILDS IS DEPRECATED

Support for running the 'configure' script directly from the
source directory is deprecated and will go away in a future
release. In source dir builds are not covered by automated
testing and are liable to break without warning. Users are
strongly recommended to switch to a separate build directory:

   $ mkdir build
   $ cd build
   $ ../configure
   $ make

cross containers  docker

NOTE: guest cross-compilers enabled: cc cc
$

We might also move the cross-x messages earlier.
Anyway all my comments can be postponed to 5.1, so if other agree with 
your patch, let's KISS for 5.1-rc1.

> 
>> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>>
>>> +
>>>    config_host_mak="config-host.mak"
>>>    echo "# Automatically generated by configure - do not modify" >config-all-disas.mak
>>>
>>
> 
> Regards,
> Daniel
> 


Re: [PATCH] configure: warn if not using a separate build directory
Posted by Carlo Arenas 4 years ago
On Tue, Mar 31, 2020 at 3:38 AM Daniel P. Berrangé <berrange@redhat.com>
wrote:

> Running configure directly from the source directory is a build
> configuration that will go away in future. It is also not currently
>

s/in future/in the future/g

Carlo
Re: [PATCH] configure: warn if not using a separate build directory
Posted by Eric Blake 4 years ago
On 3/31/20 5:37 AM, Daniel P. Berrangé wrote:
> Running configure directly from the source directory is a build
> configuration that will go away in future. It is also not currently
> covered by any automated testing. Display a deprecation warning if
> the user attempts to use an in-srcdir build setup, so that they are
> aware that they're building QEMU in an undesirable manner.
> 
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
>   configure | 30 ++++++++++++++++++++++++++++++
>   1 file changed, 30 insertions(+)
> 

It sounds like you already have a v2 coming up to address Phillipe's 
comments, but I'd be happy to see this concept make it into v5.0.

> diff --git a/configure b/configure
> index e225a1e3ff..1ab7492ab5 100755
> --- a/configure
> +++ b/configure
> @@ -3,6 +3,19 @@
>   # qemu configure script (c) 2003 Fabrice Bellard
>   #
>   
> +BUILDDIR=$(pwd)

Why fork out to 'pwd', when we can rely on $PWD for the same answer? 
Note that both $(pwd) and $PWD $BUILDDIR always give an absolute (but no 
necessarily canonical) path, which means...

> +SRCDIR=$(dirname "$0")
> +
> +ABS_BUILDDIR=$(realpath $BUILDDIR)

...calling this ABS_BUILDDIR is a misnomer (it was already absolute). 
What it is really doing is chasing through symlinks to result in a 
canonical name, particularly since unless you have absolute names, using 
only string comparison to see if two filenames are equivalent will have 
false negatives (/tmp vs. /tmp/., for example).

> +ABS_SRCDIR=$(realpath $SRCDIR)

Not robust if there are spaces in the directory names.  Safer would be
ABS_BUILDDIR=$(realpath -- "$BUILDDIR")
and similarly for ABS_SRCDIR.

> +
> +in_srcdir=no
> +if [ "$ABS_SRCDIR" == "$ABS_BUILDDIR" ]

Bashism. You MUST spell this '=', not '==', since configure is run under 
/bin/sh which might be dash which does not understand ==.

> +then
> +    in_srcdir=yes
> +fi
> +
> +
>   # Unset some variables known to interfere with behavior of common tools,
>   # just as autoconf does.
>   CLICOLOR_FORCE= GREP_OPTIONS=
> @@ -6799,6 +6812,23 @@ if test "$supported_os" = "no"; then
>       echo "us upstream at qemu-devel@nongnu.org."
>   fi
>   
> +if test "$in_srcdir" = "yes"; then
> +    echo
> +    echo "WARNING: SUPPORT FOR IN SOURCE DIR BUILDS IS DEPRECATED"
> +    echo
> +    echo "Support for running the 'configure' script directly from the"
> +    echo "source directory is deprecated and will go away in a future"
> +    echo "release. In source dir builds are not covered by automated"
> +    echo "testing and are liable to break without warning. Users are"
> +    echo "strongly recommended to switch to a separate build directory:"
> +    echo
> +    echo "  $ mkdir build"
> +    echo "  $ cd build"
> +    echo "  $ ../configure"
> +    echo "  $ make"
> +    echo
> +fi

You know, it WOULD be possible to further enhance this to actually 
create 'build' as well as a shim GNUmakefile that would auto-forward on 
to building directly in build, so that you maintain the illusion of an 
in-place build (other than all the build artifacts now living in a 
different location), and muscle memory for in-tree 'make' still works; 
I've posted elsewhere and will repeat here the contents of my GNUmakefile:

# Hack for redirecting while reminding myself to use distinct builddir
ifeq ($(MAKECMDGOALS),)
recurse: all
endif
%: force
	@echo 'changing directory to build...'
	@sleep 2
	@$(MAKE) -C build -f Makefile $(MAKECMDGOALS)
force: ;
.PHONY: force
GNUmakefile: ;


But we could do that as a patch on top of yours.

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3226
Virtualization:  qemu.org | libvirt.org


Re: [PATCH] configure: warn if not using a separate build directory
Posted by Daniel P. Berrangé 4 years ago
On Tue, Mar 31, 2020 at 09:44:37AM -0500, Eric Blake wrote:
> On 3/31/20 5:37 AM, Daniel P. Berrangé wrote:
> > Running configure directly from the source directory is a build
> > configuration that will go away in future. It is also not currently
> > covered by any automated testing. Display a deprecation warning if
> > the user attempts to use an in-srcdir build setup, so that they are
> > aware that they're building QEMU in an undesirable manner.
> > 
> > Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> > ---
> >   configure | 30 ++++++++++++++++++++++++++++++
> >   1 file changed, 30 insertions(+)
> > 
> 
> It sounds like you already have a v2 coming up to address Phillipe's
> comments, but I'd be happy to see this concept make it into v5.0.
> 
> > diff --git a/configure b/configure
> > index e225a1e3ff..1ab7492ab5 100755
> > --- a/configure
> > +++ b/configure
> > @@ -3,6 +3,19 @@
> >   # qemu configure script (c) 2003 Fabrice Bellard
> >   #
> > +BUILDDIR=$(pwd)
> 
> Why fork out to 'pwd', when we can rely on $PWD for the same answer? Note
> that both $(pwd) and $PWD $BUILDDIR always give an absolute (but no
> necessarily canonical) path, which means...
> 
> > +SRCDIR=$(dirname "$0")
> > +
> > +ABS_BUILDDIR=$(realpath $BUILDDIR)
> 
> ...calling this ABS_BUILDDIR is a misnomer (it was already absolute). What
> it is really doing is chasing through symlinks to result in a canonical
> name, particularly since unless you have absolute names, using only string
> comparison to see if two filenames are equivalent will have false negatives
> (/tmp vs. /tmp/., for example).
> 
> > +ABS_SRCDIR=$(realpath $SRCDIR)
> 
> Not robust if there are spaces in the directory names.  Safer would be
> ABS_BUILDDIR=$(realpath -- "$BUILDDIR")
> and similarly for ABS_SRCDIR.
> 
> > +
> > +in_srcdir=no
> > +if [ "$ABS_SRCDIR" == "$ABS_BUILDDIR" ]
> 
> Bashism. You MUST spell this '=', not '==', since configure is run under
> /bin/sh which might be dash which does not understand ==.

Ok, will address all of the above.

> > @@ -6799,6 +6812,23 @@ if test "$supported_os" = "no"; then
> >       echo "us upstream at qemu-devel@nongnu.org."
> >   fi
> > +if test "$in_srcdir" = "yes"; then
> > +    echo
> > +    echo "WARNING: SUPPORT FOR IN SOURCE DIR BUILDS IS DEPRECATED"
> > +    echo
> > +    echo "Support for running the 'configure' script directly from the"
> > +    echo "source directory is deprecated and will go away in a future"
> > +    echo "release. In source dir builds are not covered by automated"
> > +    echo "testing and are liable to break without warning. Users are"
> > +    echo "strongly recommended to switch to a separate build directory:"
> > +    echo
> > +    echo "  $ mkdir build"
> > +    echo "  $ cd build"
> > +    echo "  $ ../configure"
> > +    echo "  $ make"
> > +    echo
> > +fi
> 
> You know, it WOULD be possible to further enhance this to actually create
> 'build' as well as a shim GNUmakefile that would auto-forward on to building
> directly in build, so that you maintain the illusion of an in-place build
> (other than all the build artifacts now living in a different location), and
> muscle memory for in-tree 'make' still works; I've posted elsewhere and will
> repeat here the contents of my GNUmakefile:

I wanted to focus strictly on the part that we have agreement on, namely
the deprecation. Any functional changes should be completely separate
to avoid holding up the merge of the warning message patch.

Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|


Re: [PATCH] configure: warn if not using a separate build directory
Posted by Kevin Wolf 4 years ago
Am 31.03.2020 um 16:56 hat Daniel P. Berrangé geschrieben:
> On Tue, Mar 31, 2020 at 09:44:37AM -0500, Eric Blake wrote:
> > On 3/31/20 5:37 AM, Daniel P. Berrangé wrote:
> > > Running configure directly from the source directory is a build
> > > configuration that will go away in future. It is also not currently
> > > covered by any automated testing. Display a deprecation warning if
> > > the user attempts to use an in-srcdir build setup, so that they are
> > > aware that they're building QEMU in an undesirable manner.
> > > 
> > > Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>

> > > @@ -6799,6 +6812,23 @@ if test "$supported_os" = "no"; then
> > >       echo "us upstream at qemu-devel@nongnu.org."
> > >   fi
> > > +if test "$in_srcdir" = "yes"; then
> > > +    echo
> > > +    echo "WARNING: SUPPORT FOR IN SOURCE DIR BUILDS IS DEPRECATED"
> > > +    echo
> > > +    echo "Support for running the 'configure' script directly from the"
> > > +    echo "source directory is deprecated and will go away in a future"
> > > +    echo "release. In source dir builds are not covered by automated"
> > > +    echo "testing and are liable to break without warning. Users are"
> > > +    echo "strongly recommended to switch to a separate build directory:"
> > > +    echo
> > > +    echo "  $ mkdir build"
> > > +    echo "  $ cd build"
> > > +    echo "  $ ../configure"
> > > +    echo "  $ make"
> > > +    echo
> > > +fi
> > 
> > You know, it WOULD be possible to further enhance this to actually create
> > 'build' as well as a shim GNUmakefile that would auto-forward on to building
> > directly in build, so that you maintain the illusion of an in-place build
> > (other than all the build artifacts now living in a different location), and
> > muscle memory for in-tree 'make' still works; I've posted elsewhere and will
> > repeat here the contents of my GNUmakefile:
> 
> I wanted to focus strictly on the part that we have agreement on, namely
> the deprecation. Any functional changes should be completely separate
> to avoid holding up the merge of the warning message patch.

We don't have agreement on the type of deprecation suggested by your
message, that is, that ./configure from the source directory will stop
working.

If we can agree on using Eric's approach, then the message should rather
tell users that the resulting binaries will move to a different place in
future versions.

Kevin


Re: [PATCH] configure: warn if not using a separate build directory
Posted by BALATON Zoltan 4 years ago
On Tue, 31 Mar 2020, Eric Blake wrote:
> On 3/31/20 5:37 AM, Daniel P. Berrangé wrote:
>> Running configure directly from the source directory is a build
>> configuration that will go away in future. It is also not currently
>> covered by any automated testing. Display a deprecation warning if
>> the user attempts to use an in-srcdir build setup, so that they are
>> aware that they're building QEMU in an undesirable manner.
>> 
>> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
>> ---
>>   configure | 30 ++++++++++++++++++++++++++++++
>>   1 file changed, 30 insertions(+)
>> 
>
> It sounds like you already have a v2 coming up to address Phillipe's 
> comments, but I'd be happy to see this concept make it into v5.0.
>
>> diff --git a/configure b/configure
>> index e225a1e3ff..1ab7492ab5 100755
>> --- a/configure
>> +++ b/configure
>> @@ -3,6 +3,19 @@
>>   # qemu configure script (c) 2003 Fabrice Bellard
>>   #
>>   +BUILDDIR=$(pwd)
>
> Why fork out to 'pwd', when we can rely on $PWD for the same answer? Note 
> that both $(pwd) and $PWD $BUILDDIR always give an absolute (but no 
> necessarily canonical) path, which means...
>
>> +SRCDIR=$(dirname "$0")
>> +
>> +ABS_BUILDDIR=$(realpath $BUILDDIR)
>
> ...calling this ABS_BUILDDIR is a misnomer (it was already absolute). What it 
> is really doing is chasing through symlinks to result in a canonical name, 
> particularly since unless you have absolute names, using only string 
> comparison to see if two filenames are equivalent will have false negatives 
> (/tmp vs. /tmp/., for example).
>
>> +ABS_SRCDIR=$(realpath $SRCDIR)
>
> Not robust if there are spaces in the directory names.  Safer would be
> ABS_BUILDDIR=$(realpath -- "$BUILDDIR")
> and similarly for ABS_SRCDIR.
>
>> +
>> +in_srcdir=no
>> +if [ "$ABS_SRCDIR" == "$ABS_BUILDDIR" ]
>
> Bashism. You MUST spell this '=', not '==', since configure is run under 
> /bin/sh which might be dash which does not understand ==.
>
>> +then
>> +    in_srcdir=yes
>> +fi
>> +
>> +
>>   # Unset some variables known to interfere with behavior of common tools,
>>   # just as autoconf does.
>>   CLICOLOR_FORCE= GREP_OPTIONS=
>> @@ -6799,6 +6812,23 @@ if test "$supported_os" = "no"; then
>>       echo "us upstream at qemu-devel@nongnu.org."
>>   fi
>>   +if test "$in_srcdir" = "yes"; then
>> +    echo
>> +    echo "WARNING: SUPPORT FOR IN SOURCE DIR BUILDS IS DEPRECATED"
>> +    echo
>> +    echo "Support for running the 'configure' script directly from the"
>> +    echo "source directory is deprecated and will go away in a future"
>> +    echo "release. In source dir builds are not covered by automated"
>> +    echo "testing and are liable to break without warning. Users are"
>> +    echo "strongly recommended to switch to a separate build directory:"
>> +    echo
>> +    echo "  $ mkdir build"
>> +    echo "  $ cd build"
>> +    echo "  $ ../configure"
>> +    echo "  $ make"
>> +    echo
>> +fi
>
> You know, it WOULD be possible to further enhance this to actually create 
> 'build' as well as a shim GNUmakefile that would auto-forward on to building 
> directly in build, so that you maintain the illusion of an in-place build 
> (other than all the build artifacts now living in a different location), and 
> muscle memory for in-tree 'make' still works; I've posted elsewhere and will 
> repeat here the contents of my GNUmakefile:
>
> # Hack for redirecting while reminding myself to use distinct builddir
> ifeq ($(MAKECMDGOALS),)
> recurse: all
> endif
> %: force
> 	@echo 'changing directory to build...'
> 	@sleep 2

Right, just drop all the 14 line warning above, this one line here should 
be enough to remind people (maybe reworded to say that build results are 
found there and move it after the $(MAKE) so it's printed last and drop 
the sleep 2 and this should work.

Regards,
BALATON Zoltan

> 	@$(MAKE) -C build -f Makefile $(MAKECMDGOALS)
> force: ;
> .PHONY: force
> GNUmakefile: ;
>
>
> But we could do that as a patch on top of yours.
>
>