summaryrefslogtreecommitdiff
path: root/sysutils/sformat/Makefile
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commitb4f920543059af038598712771c3211999ef42a6 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /sysutils/sformat/Makefile
parent5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff)
downloadpkgsrc-b4f920543059af038598712771c3211999ef42a6.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 'sysutils/sformat/Makefile')
-rw-r--r--sysutils/sformat/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/sysutils/sformat/Makefile b/sysutils/sformat/Makefile
index eb8278ab6e5..af01b74ebc4 100644
--- a/sysutils/sformat/Makefile
+++ b/sysutils/sformat/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2005/05/22 20:08:33 jlam Exp $
+# $NetBSD: Makefile,v 1.5 2005/12/05 20:51:01 rillig Exp $
#
DISTNAME= sformat-3.5
@@ -7,7 +7,7 @@ MASTER_SITES= ftp://ftp.berlios.de/pub/sformat/
MAINTAINER= Andreas.Hallmann@tiscali.de,tech-pkg@NetBSD.org
HOMEPAGE= http://freshmeat.net/projects/sformat
-COMMENT= SCSI-disk maintainance, formating, and ultimative repair tool with support for netbsd labels
+COMMENT= SCSI disk maintainance, formating, and ultimative repair tool with support for NetBSD labels
PKG_INSTALLATION_TYPES= overwrite pkgviews
@@ -19,9 +19,9 @@ TBL?= tbl
# avoid picking up a bad ${ARCH} during the build
MAKE_ENV+= ARCH=""
MAKE_ENV+= MAKEPROG="gmake"
-MAKE_ENV+= COPTX="${CFLAGS}"
-MAKE_ENV+= LDOPTX="${LDFLAGS}"
-MAKE_FLAGS+= INS_BASE="${LOCALBASE}" # won't work in MAKE_ENV!
+MAKE_ENV+= COPTX=${CFLAGS:M*:Q}
+MAKE_ENV+= LDOPTX=${LDFLAGS:M*:Q}
+MAKE_FLAGS+= INS_BASE=${LOCALBASE:Q} # won't work in MAKE_ENV!
# if we're using a gcc which is named gcc, we need to set CCOM=gcc
# in MAKE_ENV so the make infrastructure picks the right options.