summaryrefslogtreecommitdiff
path: root/print/a2ps
diff options
context:
space:
mode:
authorfrueauf <frueauf@pkgsrc.org>1998-02-18 11:39:10 +0000
committerfrueauf <frueauf@pkgsrc.org>1998-02-18 11:39:10 +0000
commitf5a3f73088a9b6e1439abfc672a184ec91fdac88 (patch)
tree9a2ac9c23e3d0a784aa89b77d0f997e40d5e2901 /print/a2ps
parent6d231c07e7f2f37f56d51ca40b8c10d5ce5bdaaf (diff)
downloadpkgsrc-f5a3f73088a9b6e1439abfc672a184ec91fdac88.tar.gz
portlint: use ${VARIABLE} instead of $(VARIABLE); ${FALSE} instead false;
Diffstat (limited to 'print/a2ps')
-rw-r--r--print/a2ps/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/print/a2ps/Makefile b/print/a2ps/Makefile
index 82e486d124f..8a1a307fbfd 100644
--- a/print/a2ps/Makefile
+++ b/print/a2ps/Makefile
@@ -3,7 +3,7 @@
# Date created: 18 August 1997
# Whom: Chuck Robey (chuckr@freebsd.org)
#
-# $NetBSD: Makefile,v 1.3 1998/02/16 23:06:40 tron Exp $
+# $NetBSD: Makefile,v 1.4 1998/02/18 11:39:10 frueauf Exp $
# FreeBSD Id: Makefile,v 1.12 1998/02/15 21:24:42 steve Exp
#
@@ -25,8 +25,8 @@ CONFIGURE_ENV+= LPR=lpr
ALL_TARGET= all PAPERSIZE=${PAPER_SIZE}
pre-build:
- ${TOUCH} $(WRKSRC)/doc/*.info
- ${TOUCH} $(WRKSRC)/doc/*.dvi
+ ${TOUCH} ${WRKSRC}/doc/*.info
+ ${TOUCH} ${WRKSRC}/doc/*.dvi
pre-configure:
@(case "X${PAPER_SIZE}" in \
@@ -39,7 +39,7 @@ pre-configure:
;; \
*) \
goodsize=no; \
- ${ECHO} "PAPER_SIZE incorrect value: $(PAPER_SIZE)."; \
+ ${ECHO} "PAPER_SIZE incorrect value: ${PAPER_SIZE}."; \
;; \
esac; \
if [ $goodsize = "no" ]; then \
@@ -50,7 +50,7 @@ pre-configure:
${ECHO} " Note that each PAPER_SIZE has a leading "; \
${ECHO} "capital letter, and Letterdj allows a "; \
${ECHO} "slightly larger margins for DeskJets."; \
- false; \
+ ${FALSE}; \
fi)
.include <bsd.port.mk>