diff options
author | joerg <joerg@pkgsrc.org> | 2007-07-10 15:27:57 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-07-10 15:27:57 +0000 |
commit | 80fbcad27402307ed876048d8934c90e91f30589 (patch) | |
tree | e84b9a7ab55e86d5b2026048e830599ef078be1f /pkgtools/url2pkg/files | |
parent | eb66d11868e786dce70779460db8ef022d90418c (diff) | |
download | pkgsrc-80fbcad27402307ed876048d8934c90e91f30589.tar.gz |
Avoid embedding $NetBSD\$ and similiar constructs in-tree files.
The strings would be picked up for +BUILD_VERSION and create mismatches
when using ident on the same files.
Diffstat (limited to 'pkgtools/url2pkg/files')
-rw-r--r-- | pkgtools/url2pkg/files/url2pkg.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/url2pkg/files/url2pkg.pl b/pkgtools/url2pkg/files/url2pkg.pl index 7a4af95219b..c35a719e8e2 100644 --- a/pkgtools/url2pkg/files/url2pkg.pl +++ b/pkgtools/url2pkg/files/url2pkg.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: url2pkg.pl,v 1.8 2007/03/19 01:38:56 rillig Exp $ +# $NetBSD: url2pkg.pl,v 1.9 2007/07/10 15:27:57 joerg Exp $ # use strict; @@ -272,7 +272,7 @@ sub generate_initial_package($) { $category = $1; open(MF, ">", "Makefile") or die; - print MF ("# \$NetBSD\$\n"); + print MF ("# \$NetBSD" . "\$\n"); print MF ("#\n"); print MF ("\n"); print_section(*MF, [ |