diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2011-06-09 12:32:31 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2011-06-09 12:32:31 +0000 |
commit | 1630f9dae4db738ea1fc938658ca5a4d758ae0ba (patch) | |
tree | cd82ea65d8d863ec7ffa2d8418c5d1a765ec7192 /usr.bin | |
parent | d40f04e16d0d0269f5b9650dd1592d7463f4493a (diff) |
*** empty log message ***
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/pkg-config/pkg-config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/pkg-config/pkg-config b/usr.bin/pkg-config/pkg-config index eb7b2b83a74..b1163d2e6e3 100644 --- a/usr.bin/pkg-config/pkg-config +++ b/usr.bin/pkg-config/pkg-config @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $OpenBSD: pkg-config,v 1.56 2011/06/09 12:28:03 jasper Exp $ +# $OpenBSD: pkg-config,v 1.57 2011/06/09 12:32:30 jasper Exp $ # $CSK: pkgconfig.pl,v 1.39 2006/11/27 16:26:20 ckuethe Exp $ # Copyright (c) 2006 Chris Kuethe <ckuethe@openbsd.org> @@ -574,13 +574,13 @@ sub compare # suffix[0] is the 'alpha' part, suffix[1] is the '1' part in 'alpha1'. # XXX: add back 'rc'. if ($a =~ s/(beta|b|alpha|a)(\d+)$//) { - print STDERR "valid suffix $1$2 found in $a.\n" if $D; + print STDERR "valid suffix $1$2 found in $a$1$2.\n" if $D; $suffix_a[0] = $1; $suffix_a[1] = $2; } if ($b =~ s/(beta|b|alpha|a)(\d+)$//) { - print STDERR "valid suffix $1$2 found in $b.\n" if $D; + print STDERR "valid suffix $1$2 found in $b$1$2.\n" if $D; $suffix_b[0] = $1; $suffix_b[1] = $2; } |