diff options
author | wiz <wiz@pkgsrc.org> | 2005-03-02 13:35:20 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-03-02 13:35:20 +0000 |
commit | 7524623d84f87f6c79a037fa2ae1e2abdfcd414d (patch) | |
tree | 8a60be65884adf113f05de5c8dacce6510ad2a30 /net | |
parent | 57c525f903cdb6b5f29ce3ed8c2d9ed87a49bda2 (diff) | |
download | pkgsrc-7524623d84f87f6c79a037fa2ae1e2abdfcd414d.tar.gz |
Fix CPPFLAGS argument quoting.
Diffstat (limited to 'net')
-rw-r--r-- | net/rinetd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rinetd/Makefile b/net/rinetd/Makefile index 38a76eb9629..3987858b989 100644 --- a/net/rinetd/Makefile +++ b/net/rinetd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2004/12/28 02:47:47 reed Exp $ +# $NetBSD: Makefile,v 1.5 2005/03/02 13:35:20 wiz Exp $ # DISTNAME= rinetd @@ -16,7 +16,7 @@ NO_CONFIGURE= # defined USE_PKGINSTALL= yes BUILD_TARGET= rinetd -CPPFLAGS+= -DRINETD_CONF='\"${PKG_SYSCONFDIR}/rinetd.conf\"' +CPPFLAGS+= -DRINETD_CONF="\"${PKG_SYSCONFDIR}/rinetd.conf\"" RCD_SCRIPTS= rinetd |