diff options
author | cube <cube@pkgsrc.org> | 2004-08-22 21:47:58 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2004-08-22 21:47:58 +0000 |
commit | f4846eed095d589e44a988d2ea50e350e64d6b3f (patch) | |
tree | 48578e319cb8038f30c3a669da732d70e312e983 /chat/eggdrop/Makefile | |
parent | 78d641dbb199ee535116a34e20ba1e7e35fdf498 (diff) | |
download | pkgsrc-f4846eed095d589e44a988d2ea50e350e64d6b3f.tar.gz |
Fix bogus installation of dns.so that shows up only when USE_INET6 is not
YES. Fixes PR 26176.
Diffstat (limited to 'chat/eggdrop/Makefile')
-rw-r--r-- | chat/eggdrop/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat/eggdrop/Makefile b/chat/eggdrop/Makefile index 78f698ec64f..af31f2c0d73 100644 --- a/chat/eggdrop/Makefile +++ b/chat/eggdrop/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2004/03/11 08:30:31 grant Exp $ +# $NetBSD: Makefile,v 1.13 2004/08/22 21:47:58 cube Exp $ # DISTNAME= eggdrop1.6.15 @@ -83,7 +83,7 @@ do-install-modules: seen.so server.so share.so transfer.so uptime.so wire.so \ ${PREFIX}/lib/eggdrop .if !defined(USE_INET6) || empty(USE_INET6:M[Yy][Ee][Ss]) - ${INSTALL_DATA} dns.so ${PREFIX}/lib/eggdrop + cd ${WRKSRC} && ${INSTALL_DATA} dns.so ${PREFIX}/lib/eggdrop .endif cd ${WRKSRC}/src/mod && ${FIND} . -name "*.lang" -exec ${INSTALL_DATA} "{}" \ ${PREFIX}/share/eggdrop/language ";" |