Split up RCS ID template differently, so that the +BUILD_INFO builder

doesn't catch it.
This commit is contained in:
joerg 2010-02-24 22:27:11 +00:00
parent 561fefcbbf
commit 4b0cb0bb6a

View file

@ -1,5 +1,5 @@
#! @PERL@
# $NetBSD: url2pkg.pl,v 1.16 2010/01/29 20:47:49 rillig Exp $
# $NetBSD: url2pkg.pl,v 1.17 2010/02/24 22:27:11 joerg Exp $
#
# Copyright (c) 2010 The NetBSD Foundation, Inc.
@ -304,7 +304,7 @@ sub generate_initial_package($) {
$category = $1;
open(MF, ">", "Makefile") or die;
print MF ("# \$NetBSD" . "\$\n");
print MF ("# \$Net" . "BSD\$\n");
print MF ("#\n");
print MF ("\n");
print_section(*MF, [
@ -329,7 +329,7 @@ sub generate_initial_package($) {
close(MF) or die;
open(PLIST, ">", "PLIST") or die;
print PLIST ("\@comment \$NetBSD\$\n");
print PLIST ("\@comment \$Net" . "BSD\$\n");
close(PLIST) or die;
open(DESCR, ">", "DESCR") or die;