From: rearnsha Date: Mon, 13 Nov 2000 16:56:57 +0000 (+0000) Subject: * configure.in: Use 'test -f' not '[ -e'. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6e11eb2c5f2b282ded455fb318ea6a8802db15f7;p=thirdparty%2Fgcc.git * configure.in: Use 'test -f' not '[ -e'. * configure: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37432 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9f832015a962..5a4f5017ad79 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-11-13 Richard Earnshaw + + * configure.in: Use 'test -f' not '[ -e'. + * configure: Regenerated. + 2000-11-13 DJ Delorie * config/mn10300/mn10300.md (store_movm): Note which registers are diff --git a/gcc/configure b/gcc/configure index 6e075af4b1e5..4bda960e04e0 100755 --- a/gcc/configure +++ b/gcc/configure @@ -7123,7 +7123,7 @@ gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([ gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'` # Compile in configure arguments. -if [ -e configargs.h ]; then +if test -f configargs.h ; then # Being re-configured. gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*\"\([^\"]*\)\".*/\1/'` gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS" diff --git a/gcc/configure.in b/gcc/configure.in index 841ee5a3d1f3..9a62f5b73332 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -4204,7 +4204,7 @@ gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*\"\([ gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'` # Compile in configure arguments. -if [ -e configargs.h ]; then +if test -f configargs.h ; then # Being re-configured. gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*\"\([^\"]*\)\".*/\1/'` gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"