diff options
author | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
commit | 472dafdd2e1560bc21a20b89efd58a911dc44409 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /comms/pilotmgr/Makefile | |
parent | 55a30558d8942bf85417fab3ed26bec7a7c3aae6 (diff) | |
download | pkgsrc-472dafdd2e1560bc21a20b89efd58a911dc44409.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'comms/pilotmgr/Makefile')
-rw-r--r-- | comms/pilotmgr/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comms/pilotmgr/Makefile b/comms/pilotmgr/Makefile index bc239f08f97..adbfa72d4c6 100644 --- a/comms/pilotmgr/Makefile +++ b/comms/pilotmgr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2005/08/05 20:31:52 jlam Exp $ +# $NetBSD: Makefile,v 1.38 2005/12/05 20:49:55 rillig Exp $ DISTNAME= pilotmgr-1.107p2 PKGNAME= pilotmgr-1.107.2 @@ -22,7 +22,7 @@ NO_BUILD= YES USE_TOOLS+= perl:run CONFIGURE_ARGS= </dev/null -CONFIGURE_ENV+= PERL="${LOCALBASE}/bin/perl" WRKDIR="${WRKDIR}" +CONFIGURE_ENV+= PERL="${LOCALBASE}/bin/perl" WRKDIR=${WRKDIR:Q} CONFIGURE_SCRIPT= ./Setup PM_PERL_DIR= ${PREFIX}/lib/${DISTNAME:C/-.*$//} |