]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* configure.in: Use 'test -f' not '[ -e'.
authorrearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Nov 2000 16:56:57 +0000 (16:56 +0000)
committerrearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Nov 2000 16:56:57 +0000 (16:56 +0000)
* configure: Regenerated.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37432 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/configure
gcc/configure.in

index 9f832015a962fc39150f3f8e5353c1fb0be9d073..5a4f5017ad79e048bf24dafac02b116aa592b8ce 100644 (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
index 6e075af4b1e5b56e97422b81f53c54ec0244c176..4bda960e04e0e00619cef6a60b4c8d57ea702455 100755 (executable)
@@ -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"
index 841ee5a3d1f3d6913c1c4c2425809cf522f1613e..9a62f5b7333266ca0904857308fd626a00b8e710 100644 (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"