aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKelley Cook <kelleycook@wideopenwest.com>2003-06-07 07:28:15 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2003-06-07 07:28:15 +0000
commit90e145da8d3758952328d48f1283812b033013ea (patch)
tree3663448c0ac46fc2686d598f2740195e0514028f /gcc
parentffbc65c3e05de2a9a684d3104b0b75f1f9e7077a (diff)
downloadgcc-90e145da8d3758952328d48f1283812b033013ea.zip
gcc-90e145da8d3758952328d48f1283812b033013ea.tar.gz
gcc-90e145da8d3758952328d48f1283812b033013ea.tar.bz2
configure.in (HAVE_LD_RO_RW_SECTION_MIXING): Remove quotes in section names.
* configure.in (HAVE_LD_RO_RW_SECTION_MIXING): Remove quotes in section names. * configure: Regenerate. From-SVN: r67580
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rwxr-xr-xgcc/configure6
-rw-r--r--gcc/configure.in6
3 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1d90325..be17acc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2003-06-07 Kelley Cook <kelleycook@wideopenwest.com>
+
+ * configure.in (HAVE_LD_RO_RW_SECTION_MIXING): Remove quotes in
+ section names.
+ * configure: Regenerate.
+
2003-06-07 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/linux64.h (CRT_CALL_STATIC_FUNCTION): Define.
diff --git a/gcc/configure b/gcc/configure
index bce7162..3f53e24 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -8455,10 +8455,10 @@ if test $in_tree_ld = yes ; then
gcc_cv_ld_ro_rw_mix=read-write
fi
elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
- echo '.section "myfoosect", "a"' > conftest1.s
- echo '.section "myfoosect", "aw"' > conftest2.s
+ echo '.section myfoosect, "a"' > conftest1.s
+ echo '.section myfoosect, "aw"' > conftest2.s
echo '.byte 1' >> conftest2.s
- echo '.section "myfoosect", "a"' > conftest3.s
+ echo '.section myfoosect, "a"' > conftest3.s
echo '.byte 0' >> conftest3.s
if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
&& $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \
diff --git a/gcc/configure.in b/gcc/configure.in
index 5431013..183fcf6 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -2591,10 +2591,10 @@ if test $in_tree_ld = yes ; then
gcc_cv_ld_ro_rw_mix=read-write
fi
elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
- echo '.section "myfoosect", "a"' > conftest1.s
- echo '.section "myfoosect", "aw"' > conftest2.s
+ echo '.section myfoosect, "a"' > conftest1.s
+ echo '.section myfoosect, "aw"' > conftest2.s
echo '.byte 1' >> conftest2.s
- echo '.section "myfoosect", "a"' > conftest3.s
+ echo '.section myfoosect, "a"' > conftest3.s
echo '.byte 0' >> conftest3.s
if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
&& $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \