This patch was taken from the official GCC git repository. X-Git-Url: https://gcc.gnu.org/git/?p=gcc.git;a=blobdiff_plain;f=contrib%2Ftexi2pod.pl;h=91bdbb5cea933d0381f2924ab94490fca31d5800;hp=eba1bcaa3cffa78b46030b219d04fe7d68367658;hb=67b56c905078d49d3e4028085e5cb1e1fb87a8aa;hpb=2f508a78310caab123e9794d3dcfe41f2769449b It fixes a defect in the contrib/texi2pod.pl script that prevented generating manual pages. It was corrected in the GCC 6.X series. diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl index eba1bca..91bdbb5 100755 --- a/contrib/texi2pod.pl +++ b/contrib/texi2pod.pl @@ -316,7 +316,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"; rm> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/utils.scm
AgeCommit message (Expand)Author
2020-06-09Revert "installer: utils: Dump command output to syslog when testing."...Mathieu Othacehe
2020-06-09installer: utils: Dump command output to syslog when testing....Mathieu Othacehe
2020-04-10gnu: installer: Fix issue with "Esperanto" locale....Mathieu Othacehe
2020-03-05installer: Run commands without hopping through the shell....Ludovic Courtès
2020-03-05installer: Implement a dialog on /var/guix/installer-socket....Ludovic Courtès
2020-02-22installer: Log important bits to syslog....Ludovic Courtès
2020-02-22installer: Add 'syslog' macro to write to syslog....Ludovic Courtès
2019-04-26installer: Take 'guix system init' exit code into account....Ludovic Courtès
2019-04-23installer: Run 'guix system init' with the right locale....Ludovic Courtès
2019-01-17installer: Add new utils....Mathieu Othacehe
2019-01-17gnu: Add graphical installer support....Mathieu Othacehe