[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: autogen.sh patch

From: ibej <brane_at_xbc.nu>
Date: 2000-09-27 15:15:22 CEST

Daniel Stenberg wrote:
>
> # Toss config.cache if configure itself has changed.
> -if ! cmp configure configure.$$.tmp > /dev/null 2>&1; then
> +cmp configure configure.$$.tmp > /dev/null 2>&1
> +if [ $? = 1 ]; then
> echo "Tossing config.cache, since configure has changed."
> rm -f config.cache
> fi
>
Better make that `[ $? != 0 ]', unless you're absolutely sure cmp can
only exit with 0 or 1.

    Brane
Received on Sat Oct 21 14:36:09 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.