diff options
author | snj <snj@pkgsrc.org> | 2004-03-13 20:20:57 +0000 |
---|---|---|
committer | snj <snj@pkgsrc.org> | 2004-03-13 20:20:57 +0000 |
commit | b6d8236032aeb3d1d8030f8dd16534d0c09c5540 (patch) | |
tree | 57333bdac443948efe211a40d8726a1dfd825fd9 /net/oidentd | |
parent | fc5641ff841b3aaed927c61ade9217544555e3ab (diff) | |
download | pkgsrc-b6d8236032aeb3d1d8030f8dd16534d0c09c5540.tar.gz |
Instead of modifying config.h in post-configure, modify config.h.in
in post-patch. Fixes a strange build error on sparc64.
Diffstat (limited to 'net/oidentd')
-rw-r--r-- | net/oidentd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/oidentd/Makefile b/net/oidentd/Makefile index ee1ac81edbb..8cdf765e0ff 100644 --- a/net/oidentd/Makefile +++ b/net/oidentd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2004/01/03 23:21:44 tron Exp $ +# $NetBSD: Makefile,v 1.2 2004/03/13 20:20:57 snj Exp $ DISTNAME= oidentd-2.0.7 CATEGORIES= net @@ -20,7 +20,7 @@ BUILD_DEFS+= USE_INET6 CONFIGURE_ARGS+= --disable-ipv6 .endif -post-configure: - ${ECHO} >>${WRKSRC}/config.h "#define PKG_SYSCONFDIR \"${PKG_SYSCONFDIR}\"" +post-patch: + ${ECHO} >>${WRKSRC}/config.h.in "#define PKG_SYSCONFDIR \"${PKG_SYSCONFDIR}\"" .include "../../mk/bsd.pkg.mk" |