On 25 June 2015 at 23:38, Marc-André Lureau <marcandre.lur...@gmail.com> wrote: > It's nice to keep the config.log used to configure the build. > > Signed-off-by: Marc-André Lureau <marcandre.lur...@gmail.com> > --- > configure | 35 +++++++++++++++++++---------------- > 1 file changed, 19 insertions(+), 16 deletions(-) > > diff --git a/configure b/configure > index 1626c2e..dcd15a9 100755 > --- a/configure > +++ b/configure > @@ -29,14 +29,7 @@ TMPL="${TMPDIR1}/${TMPB}.lo" > TMPA="${TMPDIR1}/lib${TMPB}.la" > TMPE="${TMPDIR1}/${TMPB}.exe" > > -rm -f config.log > - > -# Print a helpful header at the top of config.log > -echo "# QEMU configure log $(date)" >> config.log > -printf "# Configured with:" >> config.log > -printf " '%s'" "$0" "$@" >> config.log > -echo >> config.log > -echo "#" >> config.log > +CONFIG_LOG="/dev/null"
Doesn't this mean we're now going to just drop a bunch of the logging on the floor in the case where the user didn't say --help? That doesn't sound great... If we want to do this I think we should identify the "--help" case earlier, not just drop all the logging until we reach the point in configure where we happen to identify it now. thanks -- PMM