diff options
author | Nick Clifton <nickc@redhat.com> | 2016-06-13 10:49:26 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-06-13 10:49:26 +0100 |
commit | 69c9e028b6c29f98b6f71faf52242aaaeb03a659 (patch) | |
tree | f430ba75d893f2e06c23fc9a52dc501eb0f7b5da /etc/texi2pod.pl | |
parent | 1d3843e0b714cfceed7fb3604ce7b88f0beb47e9 (diff) | |
download | gdb-69c9e028b6c29f98b6f71faf52242aaaeb03a659.zip gdb-69c9e028b6c29f98b6f71faf52242aaaeb03a659.tar.gz gdb-69c9e028b6c29f98b6f71faf52242aaaeb03a659.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/texi2pod.pl')
-rw-r--r-- | etc/texi2pod.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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"; |