aboutsummaryrefslogtreecommitdiff
path: root/gcc
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
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')
-rw-r--r--gcc/ChangeLog5
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.in2
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9f83201..5a4f501 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
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"
diff --git a/gcc/configure.in b/gcc/configure.in
index 841ee5a..9a62f5b 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"