In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/7d2d29f684a62da1d3ce84a1267842d35219a6d8?hp=5b48e25f83f62f48ea280c49b00302e063384348>

- Log -----------------------------------------------------------------
commit 7d2d29f684a62da1d3ce84a1267842d35219a6d8
Author: Jarkko Hietaniemi <[email protected]>
Date:   Sat Feb 13 18:26:09 2016 -0500

    Solaris /usr/bin/sed cannot handle labels of length eight.
    
    You will just get a bunch of these from makedepend:
    
    Finding dependencies for av.o.
    Label too long: : testcont
    
    According to POSIX, it should, eight being the minimum supported length.
    Shoulda woulda coulda.  Label of length seven seems to be fine.
-----------------------------------------------------------------------

Summary of changes:
 makedepend.SH | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/makedepend.SH b/makedepend.SH
index 9870c3f..4e203b6 100755
--- a/makedepend.SH
+++ b/makedepend.SH
@@ -162,11 +162,11 @@ for file in `$cat .clist`; do
     ( $echo "#line 2 \"$file\"";                               \
       $sed -n <$file                                           \
        -e "/^${filebase}_init(/q"                             \
-        -e ': testcont'                                        \
+        -e ': tstcont'                                         \
        -e '/^[         ]*#/s|[         ]*/\*..*\*/[    ]*| |' \
         -e '/\\$/{'                                            \
             -e 'N'                                             \
-            -e 'b testcont'                                    \
+            -e 'b tstcont'                                     \
         -e '}'                                                 \
        -e 's/\\\n//g'                                         \
        -e '/^#line/d'                                         \

--
Perl5 Master Repository

Reply via email to