pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/pkgtools/lintpkgsrc/files



Module Name:    pkgsrc
Committed By:   rillig
Date:           Wed Aug 17 18:53:40 UTC 2022

Modified Files:
        pkgsrc/pkgtools/lintpkgsrc/files: lintpkgsrc.pl

Log Message:
lintpkgsrc: fix default value of LOCALBASE

LOCALBASE is not related to PKGSRCDIR in any way.


To generate a diff of this commit:
cvs rdiff -u -r1.118 -r1.119 pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl
diff -u pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl:1.118 pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl:1.119
--- pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl:1.118        Wed Aug 17 18:51:43 2022
+++ pkgsrc/pkgtools/lintpkgsrc/files/lintpkgsrc.pl      Wed Aug 17 18:53:40 2022
@@ -1,5 +1,5 @@
 #!@PERL5@
-# $NetBSD: lintpkgsrc.pl,v 1.118 2022/08/17 18:51:43 rillig Exp $
+# $NetBSD: lintpkgsrc.pl,v 1.119 2022/08/17 18:53:40 rillig Exp $
 
 # Written by David Brownlee <abs%netbsd.org@localhost>.
 #
@@ -721,7 +721,7 @@ sub get_default_makefile_vars() {
            : $conf_pkgsrcdir;
 
        $default_vars->{DESTDIR} = '';
-       $default_vars->{LOCALBASE} = $conf_pkgsrcdir;
+       $default_vars->{LOCALBASE} = $conf_prefix;
        $default_vars->{X11BASE} = $conf_x11base;
 
        if (-f $conf_makeconf &&



Home | Main Index | Thread Index | Old Index