diff options
author | jlam <jlam@pkgsrc.org> | 2005-07-15 18:27:48 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-07-15 18:27:48 +0000 |
commit | bf9129c41e2b7be767d2c17d60e379900e6dda5f (patch) | |
tree | 91f275af994eade5936cfd1677c803fdc48b0f89 /cross | |
parent | 2e277f69ef4ed4af438f9af4c09272a7ccbb2475 (diff) | |
download | pkgsrc-bf9129c41e2b7be767d2c17d60e379900e6dda5f.tar.gz |
Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by making
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable
that specifies all of the tools we need to build/run the package.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/COMMON/cross.mk | 4 | ||||
-rw-r--r-- | cross/avr-gcc/Makefile | 5 | ||||
-rw-r--r-- | cross/i386-mingw32/Makefile | 5 |
3 files changed, 6 insertions, 8 deletions
diff --git a/cross/COMMON/cross.mk b/cross/COMMON/cross.mk index b8ca10d4aeb..8fc3ece3bee 100644 --- a/cross/COMMON/cross.mk +++ b/cross/COMMON/cross.mk @@ -1,4 +1,4 @@ -# $NetBSD: cross.mk,v 1.36 2005/06/27 15:53:36 rillig Exp $ +# $NetBSD: cross.mk,v 1.37 2005/07/15 18:27:48 jlam Exp $ # Shared definitions for building a cross-compile environment. @@ -45,7 +45,7 @@ AR_FOR_TARGET= ${WRKDIR}/ar NM_FOR_TARGET= ${WRKDIR}/nm RANLIB_FOR_TARGET= ${WRKDIR}/ranlib LD_FOR_TARGET= ${WRKDIR}/ld -PKGSRC_USE_TOOLS+= patch +USE_TOOLS+= patch pre-patch: binutils-patch pre-configure: binutils-configure diff --git a/cross/avr-gcc/Makefile b/cross/avr-gcc/Makefile index 52b1243c376..f918d28dc9e 100644 --- a/cross/avr-gcc/Makefile +++ b/cross/avr-gcc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2005/05/22 20:07:44 jlam Exp $ +# $NetBSD: Makefile,v 1.14 2005/07/15 18:27:48 jlam Exp $ DISTNAME= gcc-3.3.2003.05.11 PKGNAME= avr-gcc-3.3.2003.05.11 @@ -23,8 +23,7 @@ EXTRACT_ONLY= gcc-core+g++-3.3.2003.05.11${EXTRACT_SUFX} GNU_CONFIGURE= yes USE_PERL5= build USE_BZIP2= yes -USE_TOOLS+= bison gmake lex -PKGSRC_USE_TOOLS+= tar +USE_TOOLS+= bison gmake lex tar USE_PKGLOCALEDIR= yes CONFIGURE_ARGS= --target=avr --prefix=${PREFIX} diff --git a/cross/i386-mingw32/Makefile b/cross/i386-mingw32/Makefile index d79dd03b70f..1d6dd54d8c3 100644 --- a/cross/i386-mingw32/Makefile +++ b/cross/i386-mingw32/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2005/05/22 20:07:45 jlam Exp $ +# $NetBSD: Makefile,v 1.21 2005/07/15 18:27:48 jlam Exp $ DISTNAME= cross-${TARGET_ARCH}-3.2 CROSS_DISTFILES= @@ -26,8 +26,7 @@ CROSS_DISTFILES+= mingw-runtime-3.2.tar.gz MINGW_WRKSRC= ${WRKDIR}/mingw-runtime-3.2 CROSS_DISTFILES+= w32api-2.5.tar.gz W32_WRKSRC= ${WRKDIR}/w32api-2.5 -USE_TOOLS+= gmake -PKGSRC_USE_TOOLS+= tar +USE_TOOLS+= gmake tar USE_PERL5= build WRKSRC= ${WRKDIR} # for the patch target |