diff options
author | rillig <rillig@pkgsrc.org> | 2005-11-20 12:27:18 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-11-20 12:27:18 +0000 |
commit | e38b91c74c7f2eabac769c7e40e6fc22f7db0376 (patch) | |
tree | 1c49046196dd3b9ddeaf97c7ebbf5daa43d1e9f8 /pkgtools | |
parent | 5f7986082da6233ded0c1ec30032fc67e27f015e (diff) | |
download | pkgsrc-e38b91c74c7f2eabac769c7e40e6fc22f7db0376.tar.gz |
Added the $conf_make variable to solve compile-time errors.
Diffstat (limited to 'pkgtools')
-rwxr-xr-x | pkgtools/pkglint/files/lintpkgsrc.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgtools/pkglint/files/lintpkgsrc.pl b/pkgtools/pkglint/files/lintpkgsrc.pl index 19613511e52..3cb2f14adce 100755 --- a/pkgtools/pkglint/files/lintpkgsrc.pl +++ b/pkgtools/pkglint/files/lintpkgsrc.pl @@ -1,6 +1,6 @@ #!@PERL@ -# $NetBSD: lintpkgsrc.pl,v 1.106 2005/11/20 10:55:43 rillig Exp $ +# $NetBSD: lintpkgsrc.pl,v 1.107 2005/11/20 12:27:18 rillig Exp $ # Written by David Brownlee <abs@netbsd.org>. # @@ -22,6 +22,7 @@ use File::Basename; use Cwd 'realpath', 'getcwd'; # Buildtime configuration +my $conf_make = '@MAKE@'; my $conf_pkgsrcdir = '@PKGSRCDIR@'; my $conf_prefix = '@PREFIX@'; |