PHP_VERSION=$VERSION
echo "#define PHP_VERSION \"$PHP_VERSION\"" > php_version.h.new
-if ! cmp php_version.h.new php_version.h >/dev/null; then
+cmp php_version.h.new php_version.h >/dev/null
+if test $? -ne 0 ; then
rm -f php_version.h && mv php_version.h.new php_version.h && \
echo 'Updated php_version.h'
else
makefiles=`echo ext/*/Makefile.am | sed -e 's/\.am//g'`
sed -e "s#@@EXT_MAKEFILES@@#$makefiles#" configure.in.in > configure.in.new
-if ! cmp configure.in configure.in.new > /dev/null 2>&1; then
+cmp configure.in configure.in.new > /dev/null 2>&1
+if test $? -ne 0 ; then
mv configure.in.new configure.in
else
rm -f configure.in.new
cat $file >> acconfig.h.new
done
fi
-if ! cmp acconfig.h acconfig.h.new > /dev/null 2>&1; then
+cmp acconfig.h acconfig.h.new > /dev/null 2>&1
+if test $? -ne 0 ; then
mv acconfig.h.new acconfig.h
else
rm -f acconfig.h.new