diff options
author | Daniel Jacobowitz <drow@mvista.com> | 2002-07-04 22:43:29 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2002-07-04 22:43:29 +0000 |
commit | da77408f4c7954ab780a1c8b43fc6e16b6e78621 (patch) | |
tree | 591b295a915dd3a7f7f3fe020d07075a57e65532 | |
parent | ec52b446cc15368a1c3e248aaa59dfc40e4733b9 (diff) | |
download | gcc-da77408f4c7954ab780a1c8b43fc6e16b6e78621.zip gcc-da77408f4c7954ab780a1c8b43fc6e16b6e78621.tar.gz gcc-da77408f4c7954ab780a1c8b43fc6e16b6e78621.tar.bz2 |
configure.in: Correct typos...
* configure.in: Correct typos: gcc_cv_as_gdwarf2_debug_flag to
gcc_cv_as_gdwarf2_flag and gcc_cv_as_gstabs_debug_flag
to gcc_cv_as_gstabs_flag.
* configure: Rebuilt.
From-SVN: r55249
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rwxr-xr-x | gcc/configure | 4 | ||||
-rw-r--r-- | gcc/configure.in | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9efe9a9..648247a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2002-07-04 Daniel Jacobowitz <drow@mvista.com> + + * configure.in: Correct typos: gcc_cv_as_gdwarf2_debug_flag to + gcc_cv_as_gdwarf2_flag and gcc_cv_as_gstabs_debug_flag + to gcc_cv_as_gstabs_flag. + * configure: Rebuilt. + 2002-07-04 Geoffrey Keating <geoffk@redhat.com> * ggc.h (ggc_add_root): Document as obsolete. diff --git a/gcc/configure b/gcc/configure index ca666c7..ff95231 100755 --- a/gcc/configure +++ b/gcc/configure @@ -7851,7 +7851,7 @@ then -o "$gcc_cv_gas_major_version" -gt 2 \ && grep 'obj_format = elf' ../gas/Makefile > /dev/null \ && test x"$insn" != x ; then - gcc_cv_as_gdwarf2_debug_flag="yes" + gcc_cv_as_gdwarf2_flag="yes" fi elif test x$gcc_cv_as != x -a x"$insn" != x ; then echo '' > conftest.s @@ -7880,7 +7880,7 @@ then -o "$gcc_cv_gas_major_version" -gt 2 \ && grep 'obj_format = elf' ../gas/Makefile > /dev/null \ && test x"$insn" != x ; then - gcc_cv_as_gstabs_debug_flag="yes" + gcc_cv_as_gstabs_flag="yes" fi elif test x$gcc_cv_as != x -a x"$insn" != x ; then echo '' > conftest.s diff --git a/gcc/configure.in b/gcc/configure.in index 48b3106..e75215a 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -2103,7 +2103,7 @@ then -o "$gcc_cv_gas_major_version" -gt 2 \ && grep 'obj_format = elf' ../gas/Makefile > /dev/null \ && test x"$insn" != x ; then - gcc_cv_as_gdwarf2_debug_flag="yes" + gcc_cv_as_gdwarf2_flag="yes" fi elif test x$gcc_cv_as != x -a x"$insn" != x ; then echo '' > conftest.s @@ -2129,7 +2129,7 @@ then -o "$gcc_cv_gas_major_version" -gt 2 \ && grep 'obj_format = elf' ../gas/Makefile > /dev/null \ && test x"$insn" != x ; then - gcc_cv_as_gstabs_debug_flag="yes" + gcc_cv_as_gstabs_flag="yes" fi elif test x$gcc_cv_as != x -a x"$insn" != x ; then echo '' > conftest.s |