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 /graphics/tuxpaint | |
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 'graphics/tuxpaint')
-rw-r--r-- | graphics/tuxpaint/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/tuxpaint/Makefile b/graphics/tuxpaint/Makefile index b07d56780a2..609d5a7cc17 100644 --- a/graphics/tuxpaint/Makefile +++ b/graphics/tuxpaint/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.88 2017/02/12 06:25:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.89 2018/01/01 18:16:36 rillig Exp $ DISTNAME= tuxpaint-0.9.22 PKGREVISION= 4 @@ -30,8 +30,8 @@ MAKE_FLAGS+= CPPFLAGS=${CPPFLAGS:Q} MAKE_FLAGS+= LDFLAGS=${LDFLAGS:Q} MAKE_FLAGS+= CHMOD=${CHMOD:Q} MAKE_FLAGS+= PREFIX=${PREFIX} -MAKE_FLAGS+= LOCALE_PREFIX=$(DESTDIR)$(PREFIX)/$(PKGLOCALEDIR)/locale -MAKE_FLAGS+= MAN_PREFIX=$(DESTDIR)$(PREFIX)/${PKGMANDIR}/ +MAKE_FLAGS+= LOCALE_PREFIX=${DESTDIR}${PREFIX}/${PKGLOCALEDIR}/locale +MAKE_FLAGS+= MAN_PREFIX=${DESTDIR}${PREFIX}/${PKGMANDIR}/ MAKE_FLAGS+= GPERF=${PREFIX}/bin/gperf EGDIR= ${PREFIX}/share/examples/tuxpaint CONF_FILES= ${EGDIR}/tuxpaint.conf ${PKG_SYSCONFDIR}/tuxpaint.conf |