diff options
author | sakamoto <sakamoto@pkgsrc.org> | 1999-09-14 00:43:20 +0000 |
---|---|---|
committer | sakamoto <sakamoto@pkgsrc.org> | 1999-09-14 00:43:20 +0000 |
commit | 055ce33423dedc5aa69c71659251422e50ece395 (patch) | |
tree | 60e1a89ac20debf5d50b66ccb8969f156bd8be88 /pkgtools/port2pkg/files | |
parent | 687f6aa6c5d45ef8acfd0b5a0b330c533051e920 (diff) | |
download | pkgsrc-055ce33423dedc5aa69c71659251422e50ece395.tar.gz |
don't substitute RCS Id in source code,
suggested by Kazuto Ushioda (x-y-z@3si.co.jp).
Diffstat (limited to 'pkgtools/port2pkg/files')
-rwxr-xr-x | pkgtools/port2pkg/files/port2pkg.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/port2pkg/files/port2pkg.pl b/pkgtools/port2pkg/files/port2pkg.pl index 47f9590e4ea..f6716888f0b 100755 --- a/pkgtools/port2pkg/files/port2pkg.pl +++ b/pkgtools/port2pkg/files/port2pkg.pl @@ -1,6 +1,6 @@ #!/usr/bin/env perl # -# $NetBSD: port2pkg.pl,v 1.2 1999/09/03 04:37:36 sakamoto Exp $ +# $NetBSD: port2pkg.pl,v 1.3 1999/09/14 00:43:20 sakamoto Exp $ # require 'getopts.pl'; @@ -99,8 +99,8 @@ sub conv_Makefile { while (<PORTS>) { if (! /^\#/) {last;} - if (/\$FreeBSD:( .*) \$/ || /\$Id: port2pkg.pl,v 1.2 1999/09/03 04:37:36 sakamoto Exp $/) { - print PKG "\# FreeBSD Id:$1\n"; + if (/\$FreeBSD(: .*) \$/ || /\$Id(: .*) \$/) { + print PKG "\# FreeBSD Id$1\n"; } else { print; } |