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 | 6cf5636f7dd754a985a037b65198bd2d12ad552f (patch) | |
tree | 48578e319cb8038f30c3a669da732d70e312e983 /chat | |
parent | 182c1a0f1d8f24c6aeda3bf18a5b79557b69822a (diff) | |
download | pkgsrc-6cf5636f7dd754a985a037b65198bd2d12ad552f.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')
-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 ";" |