diff options
author | rillig <rillig@pkgsrc.org> | 2018-01-01 18:16:35 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2018-01-01 18:16:35 +0000 |
commit | b18c532e6ecd247c16c309db2b6ebfb2d9d9b929 (patch) | |
tree | 7a8380c1b05f2a6cfadde7f15fc8cafd97355633 /lang/pforth | |
parent | 102f0b322dc649972205d0be0d0fc29afdf59f22 (diff) | |
download | pkgsrc-b18c532e6ecd247c16c309db2b6ebfb2d9d9b929.tar.gz |
Replaced $(ROUND) with ${CURLY} variable references.
This has been a pkglint warning for several years now, and pkglint can even
fix it automatically. And it did for this commit.
Only in lang/mercury, two passes of autofixing were necessary because there
were nested variables.
Diffstat (limited to 'lang/pforth')
-rw-r--r-- | lang/pforth/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/pforth/Makefile b/lang/pforth/Makefile index 76593e41c03..056f374c096 100644 --- a/lang/pforth/Makefile +++ b/lang/pforth/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2017/09/17 15:04:23 asau Exp $ +# $NetBSD: Makefile,v 1.27 2018/01/01 18:16:37 rillig Exp $ DISTNAME= pforth_v27_20101121 PKGNAME= pforth-27 @@ -11,10 +11,10 @@ HOMEPAGE= http://www.softsynth.com/pforth/ COMMENT= Portable ANS-like Forth LICENSE= mit -WRKSRC= $(WRKDIR)/pforth_v27 +WRKSRC= ${WRKDIR}/pforth_v27 MAKE_FILE= build/unix/Makefile MAKE_FLAGS= SRCDIR=. -CPPFLAGS= -DPF_DEFAULT_DICTIONARY='"$(PREFIX)/lib/pforth/pforth.dic"' +CPPFLAGS= -DPF_DEFAULT_DICTIONARY='"${PREFIX}/lib/pforth/pforth.dic"' INSTALLATION_DIRS= bin lib/pforth share/doc/pforth share/pforth share/pforth/utils |