aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2016-06-13 10:49:26 +0100
committerMike Frysinger <vapier@gentoo.org>2021-11-10 20:14:00 -0500
commitbabc07f7ef1676f15dbeeff498c6b6a8e03ccac6 (patch)
treef70aeb3161c2adcb069d7c0b7aba2ce7ab3cc5f8 /etc
parentc6f0a46d715d46a0716a505d728ff08e7c5b156a (diff)
downloadnewlib-babc07f7ef1676f15dbeeff498c6b6a8e03ccac6.zip
newlib-babc07f7ef1676f15dbeeff498c6b6a8e03ccac6.tar.gz
newlib-babc07f7ef1676f15dbeeff498c6b6a8e03ccac6.tar.bz2
Fix compile time warning messages building with gcc v6.1.1
etc * texi2pod.pl: Escape curly braces, whilst searching for keyword strong. gas * config/tc-arm.c: For non-ELF based targets skip ARM feature sets that are not supported. * config/tc-arc.c (md_apply_fix): Avoid left shifting a signed constant. * config/tc-cr16.c (check_range): Likewise. * config/tc-nios2.c (nios2_check_overflow): Likewise.
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog5
-rw-r--r--etc/texi2pod.pl2
2 files changed, 6 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index c110338..1864bf0 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,8 @@
+2016-06-13 Nick Clifton <nickc@redhat.com>
+
+ * texi2pod.pl: Escape curly braces, whilst searching for keyword
+ strong.
+
2016-03-18 Nick Clifton <nickc@redhat.com>
* texi2pod.pl: Add TARGET to the list of recognised man page
diff --git a/etc/texi2pod.pl b/etc/texi2pod.pl
index dd3e181..0f465b7 100644
--- a/etc/texi2pod.pl
+++ b/etc/texi2pod.pl
@@ -311,7 +311,7 @@ while(<$inf>) {
@columns = ();
for $column (split (/\s*\@tab\s*/, $1)) {
# @strong{...} is used a @headitem work-alike
- $column =~ s/^\@strong{(.*)}$/$1/;
+ $column =~ s/^\@strong\{(.*)\}$/$1/;
push @columns, $column;
}
$_ = "\n=item ".join (" : ", @columns)."\n";