diff options
author | rillig <rillig> | 2005-11-30 19:53:37 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-11-30 19:53:37 +0000 |
commit | 79d1e69f9926764740c8662af6c969a1b4dbaafd (patch) | |
tree | 837b70c879275ea825839613a8dbc87848848792 /pkgtools | |
parent | 52642d9be61b259b455cc5b3c441876a590c4c89 (diff) | |
download | pkgsrc-79d1e69f9926764740c8662af6c969a1b4dbaafd.tar.gz |
- Removed the unnecessary constant conf_rcsidstring.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 1e8bcb31f96..d255f3ebc66 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -11,7 +11,7 @@ # Freely redistributable. Absolutely no warranty. # # From Id: portlint.pl,v 1.64 1998/02/28 02:34:05 itojun Exp -# $NetBSD: pkglint.pl,v 1.393 2005/11/30 19:23:43 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.394 2005/11/30 19:53:37 rillig Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by: @@ -627,7 +627,6 @@ BEGIN { # Buildtime configuration # -use constant conf_rcsidstring => 'NetBSD'; use constant conf_distver => '@DISTVER@'; use constant conf_make => '@MAKE@'; use constant conf_datadir => '@DATADIR@'; @@ -679,7 +678,7 @@ my $opt_dumpmakefile = false; my $opt_import = false; my $opt_quiet = false; my $opt_recursive = false; -my $opt_rcsidstring = conf_rcsidstring; +my $opt_rcsidstring = "NetBSD"; my (@options) = ( # [ usage-opt, usage-message, getopt-opt, getopt-action ] [ "-C{check,...}", "Enable or disable specific checks", |