diff options
author | snj <snj> | 2004-03-13 20:20:57 +0000 |
---|---|---|
committer | snj <snj> | 2004-03-13 20:20:57 +0000 |
commit | af14d44223cd141802231a3b8ccf143206b21f36 (patch) | |
tree | 57333bdac443948efe211a40d8726a1dfd825fd9 /net | |
parent | a37f25163276654c5f758d580e6aa456becdd237 (diff) | |
download | pkgsrc-af14d44223cd141802231a3b8ccf143206b21f36.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')
-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" |