diff options
author | wiz <wiz> | 2004-12-04 11:58:06 +0000 |
---|---|---|
committer | wiz <wiz> | 2004-12-04 11:58:06 +0000 |
commit | 76d548054bbd1287016d4282401aa805cf9a339d (patch) | |
tree | 011a2fe87f9225777bb0ff639dc3a08fa8deb6bb /net | |
parent | 9abdfcb8836874fdd61baac4c88c17c72dda1d55 (diff) | |
download | pkgsrc-76d548054bbd1287016d4282401aa805cf9a339d.tar.gz |
Fix build (missing PTHREAD_LDFLAGS).
Diffstat (limited to 'net')
-rw-r--r-- | net/maradns/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/maradns/Makefile b/net/maradns/Makefile index 632c1fc2197..630cd198fab 100644 --- a/net/maradns/Makefile +++ b/net/maradns/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2004/11/27 18:04:20 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2004/12/04 11:58:06 wiz Exp $ DISTNAME= maradns-1.0.18 PKGREVISION= 1 @@ -21,7 +21,7 @@ EGDIR= ${PREFIX}/share/examples/maradns CONF_FILES= ${EGDIR}/example_mararc ${PKG_SYSCONFDIR}/mararc .include "../../mk/pthread.buildlink3.mk" -LDFLAGS+= ${PTHREAD_LIBS} +LDFLAGS+= ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS} post-patch: ${SED} -e s,@@PKGSYSCONFDIR@@,${PKG_SYSCONFDIR}, \ |