# HG changeset patch # User diego # Date 1195750008 0 # Node ID f618cb2444282e989faade120201758aa7f0fa89 # Parent a362a3b42e246d9a5951aea66d28456a1537a44a Invert the logic to check the cmp return value cmp to avoid using the ! operator. Useful on non-POSIX shells that do not support the ! operator. We normally require a POSIX-compatible shell, but in this case the change is acceptable since it does not complicate configure nor hurt readability. patch by Ralf Menzel, menzel ls6.cs.uni-dortmund de diff -r a362a3b42e24 -r f618cb244428 configure --- a/configure Thu Nov 22 10:27:58 2007 +0000 +++ b/configure Thu Nov 22 16:46:48 2007 +0000 @@ -8503,7 +8503,7 @@ EOF # Do not overwrite an unchanged config.h to avoid superfluous rebuilds. -! cmp -s "$TMPH" config.h && mv -f "$TMPH" config.h +cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h #############################################################################