configure.in: Use 'test -f' not '[ -e'.

* configure.in:  Use 'test -f' not '[ -e'.
* configure: Regenerated.

From-SVN: r37432
This commit is contained in:
Richard Earnshaw 2000-11-13 16:56:57 +00:00 committed by Richard Earnshaw
parent 481a6b4a32
commit 8105825db7
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-11-13 Richard Earnshaw <rearnsha@arm.com>
* configure.in: Use 'test -f' not '[ -e'.
* configure: Regenerated.
2000-11-13 DJ Delorie <dj@redhat.com>
* config/mn10300/mn10300.md (store_movm): Note which registers are

2
gcc/configure vendored
View File

@ -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"

View File

@ -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"