diff options
author | jlam <jlam> | 2004-02-14 15:29:15 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-02-14 15:29:15 +0000 |
commit | d166ab063e77ba4edfe9207d07d6190ff7407c0d (patch) | |
tree | 08b9b925dd2aec2f5c85c45b0bc69810e603367e /net | |
parent | 500f338e9a6c18f4dfaa9e7d94e1a233ee1fd0b9 (diff) | |
download | pkgsrc-d166ab063e77ba4edfe9207d07d6190ff7407c0d.tar.gz |
CONFIG_{GUESS,SUB}_OVERRIDE are now relative to ${WRKSRC} and will
automatically substitute for any config.{guess,sub} files found up to a
directory depth of 2.
Diffstat (limited to 'net')
-rw-r--r-- | net/ORBit/Makefile | 10 | ||||
-rw-r--r-- | net/xorp/Makefile | 11 |
2 files changed, 5 insertions, 16 deletions
diff --git a/net/ORBit/Makefile b/net/ORBit/Makefile index 2b33d87d9cd..e3e679894f4 100644 --- a/net/ORBit/Makefile +++ b/net/ORBit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.100 2004/01/31 11:36:23 sekiya Exp $ +# $NetBSD: Makefile,v 1.101 2004/02/14 15:29:15 jlam Exp $ # DISTNAME= ORBit-0.${ORBIT_MAJOR}.${ORBIT_MINOR} @@ -25,14 +25,6 @@ LIBTOOL_OVERRIDE+= ${WRKSRC}/libtool LIBTOOL_OVERRIDE+= ${WRKSRC}/popt/libtool LIBTOOL_OVERRIDE+= ${WRKSRC}/libIDL/libtool -CONFIG_GUESS_OVERRIDE+= ${WRKSRC}/config.guess -CONFIG_GUESS_OVERRIDE+= ${WRKSRC}/libIDL/config.guess -CONFIG_GUESS_OVERRIDE+= ${WRKSRC}/popt/config.guess - -CONFIG_SUB_OVERRIDE+= ${WRKSRC}/config.sub -CONFIG_SUB_OVERRIDE+= ${WRKSRC}/libIDL/config.sub -CONFIG_SUB_OVERRIDE+= ${WRKSRC}/popt/config.sub - GNU_CONFIGURE= YES CONFIGURE_ENV+= LIBWRAP_PATH=${BUILDLINK_PREFIX.tcp_wrappers}/lib/libwrap.a CONFIGURE_ENV+= LIB_WRAP="-lwrap" diff --git a/net/xorp/Makefile b/net/xorp/Makefile index dcf2845cb62..52a7de151d7 100644 --- a/net/xorp/Makefile +++ b/net/xorp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2004/01/24 14:50:06 grant Exp $ +# $NetBSD: Makefile,v 1.7 2004/02/14 15:29:15 jlam Exp $ # DISTNAME= xorp-0.3 @@ -12,11 +12,8 @@ COMMENT= Open router software platform # cli/libtecla/configure.in bombs if ncurses is installed CONFLICTS+= ncurses-[0-9]* -HAS_CONFIGURE= YES -GNU_CONFIGURE= YES -USE_GNU_TOOLS+= make -CONFIGURE_ARGS+=--sysconfdir=${PKG_SYSCONFDIR} -CONFIG_GUESS_OVERRIDE= ${WRKSRC}/cli/libtecla/config.guess -CONFIG_SUB_OVERRIDE= ${WRKSRC}/cli/libtecla/config.sub +GNU_CONFIGURE= YES +USE_GNU_TOOLS+= make +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} .include "../../mk/bsd.pkg.mk" |