diff options
author | jlam <jlam@pkgsrc.org> | 2006-07-07 15:49:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-07-07 15:49:30 +0000 |
commit | 0c31ed64142a04a985e8697c1cd619e1dca0ccc6 (patch) | |
tree | 5278cb82e97bb3d8e2ae6a66b9d26fa073e4d665 /chat/silc-server | |
parent | ddd2fc567145fb8be4e6d9219637ab89ac3e374d (diff) | |
download | pkgsrc-0c31ed64142a04a985e8697c1cd619e1dca0ccc6.tar.gz |
LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... just
set OVERRIDE_DIRDEPTH to find any libtool scripts deeper in the WRKSRC
tree unless they're named something other than "libtool".
SHLIBTOOL_OVERRIDE generally doesn't need to be specified either -- just
define it to the empty list and shlibtool-override will look for libtool
scripts.
Diffstat (limited to 'chat/silc-server')
-rw-r--r-- | chat/silc-server/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chat/silc-server/Makefile b/chat/silc-server/Makefile index 335ff5515f0..a4135b1e480 100644 --- a/chat/silc-server/Makefile +++ b/chat/silc-server/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2006/04/23 00:12:36 jlam Exp $ +# $NetBSD: Makefile,v 1.51 2006/07/07 15:49:31 jlam Exp $ # DISTNAME= silc-server-1.0.2 @@ -16,7 +16,8 @@ COMMENT= Server for the Secure Internet Live Conferencing (SILC) GNU_CONFIGURE= yes USE_LIBTOOL= yes -SHLIBTOOL_OVERRIDE= libtool */*/*/libtool +OVERRIDE_DIRDEPTH= 3 +SHLIBTOOL_OVERRIDE= # empty .include "../../mk/bsd.prefs.mk" |