aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure
diff options
context:
space:
mode:
authorRichard Earnshaw <rearnsha@arm.com>2000-11-13 16:56:57 +0000
committerRichard Earnshaw <rearnsha@gcc.gnu.org>2000-11-13 16:56:57 +0000
commit8105825db77fedebe9c0bc6fca853fee0008c27c (patch)
tree25f6017809b4bcb1efb1192f49223dca679d3bab /gcc/configure
parent481a6b4a32ef5b41a396dfd5967ac27aff7ef776 (diff)
downloadgcc-8105825db77fedebe9c0bc6fca853fee0008c27c.zip
gcc-8105825db77fedebe9c0bc6fca853fee0008c27c.tar.gz
gcc-8105825db77fedebe9c0bc6fca853fee0008c27c.tar.bz2
configure.in: Use 'test -f' not '[ -e'.
* configure.in: Use 'test -f' not '[ -e'. * configure: Regenerated. From-SVN: r37432
Diffstat (limited to 'gcc/configure')
-rwxr-xr-xgcc/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/configure b/gcc/configure
index 6e075af..4bda960 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"