diff options
author | wiz <wiz> | 2005-03-03 15:13:39 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-03-03 15:13:39 +0000 |
commit | a228bc43e65add130e16aa3f4a4ae2ffc5379129 (patch) | |
tree | d436b27156825ede7980fbfc0da146f5d2bc95a1 | |
parent | 19393639fbc5cf559cc65f0a85c67411ad0f9c6e (diff) | |
download | pkgsrc-a228bc43e65add130e16aa3f4a4ae2ffc5379129.tar.gz |
Fix build.
-rw-r--r-- | comms/qpage/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/comms/qpage/Makefile b/comms/qpage/Makefile index bdd5bdbed24..41f1e9a7578 100644 --- a/comms/qpage/Makefile +++ b/comms/qpage/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2004/08/30 21:33:54 recht Exp $ +# $NetBSD: Makefile,v 1.10 2005/03/03 15:13:39 wiz Exp $ # DISTNAME= qpage-3.3 @@ -14,8 +14,9 @@ GNU_CONFIGURE= yes CONFIGURE_ENV+= MKDIR_PATH=${MKDIR:Q} -CPPFLAGS+= `${AWK} -F: '/^uucp:/ { \ - printf(\"-DDAEMONUSER=%s -DDAEMONGROUP=%s\", $$3, $$4); }' \ - /etc/passwd` +CPPFLAGS+= ${USERFLAGS} .include "../../mk/bsd.pkg.mk" + +USERFLAGS!= ${AWK} -F: '/^uucp:/ { printf("-DDAEMONUSER=%s -DDAEMONGROUP=%s", $$3, $$4); }' \ + /etc/passwd |