diff options
author | fredb <fredb> | 1999-09-27 17:52:15 +0000 |
---|---|---|
committer | fredb <fredb> | 1999-09-27 17:52:15 +0000 |
commit | 37ad7d87a11c4d4a0adce2cd3542487118c6a4c7 (patch) | |
tree | d279dc63902d1d748b73641bbd16c7778c072a1a /cross | |
parent | a95fbf918380d5ffcfb70fc3dbdb185cbb06b47e (diff) | |
download | pkgsrc-37ad7d87a11c4d4a0adce2cd3542487118c6a4c7.tar.gz |
Handle "exclude" files in a consistent fashion. The idea
is to save time and disk space by not extracting unneeded files.
Closes PR pkg/8498.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/binutils/Makefile | 7 | ||||
-rw-r--r-- | cross/binutils/files/exclude | 7 |
2 files changed, 6 insertions, 8 deletions
diff --git a/cross/binutils/Makefile b/cross/binutils/Makefile index 16f005f53e1..3be35141dc6 100644 --- a/cross/binutils/Makefile +++ b/cross/binutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 1999/05/21 09:37:07 mrg Exp $ +# $NetBSD: Makefile,v 1.11 1999/09/27 17:52:15 fredb Exp $ # # GNU binutils configured to hold `as many targets as the cross system is # capable of using'. Configures and builds everything except gas, which @@ -37,9 +37,6 @@ ENABLE_TARGETS+= alpha-netbsd \ # which we use for the `sparc-netbsdelf' target #ENABLE_TARGETS+= sparc64-elf -post-extract: - @${RM} -rf ${WRKSRC}/gas - # we use MKDIR, not INSTALL_PROGRAM_DIR, deliberately. do-install: ${MKDIR} ${BINDIR} ${PREFIX}/lib/ldscripts @@ -65,7 +62,7 @@ do-install: ENABLE_TARGETS_LIST!= ${ECHO} "${ENABLE_TARGETS}" | ${SED} "s/[ ][ ]*/,/g;s/^,*//" .if defined(EXTRACT_USING_PAX) -EXTRACT_ELEMENTS= '-s|${FILESDIR}/exclude||' +EXTRACT_ELEMENTS= -c `cat ${FILESDIR}/exclude` .else EXTRACT_ELEMENTS= -X ${FILESDIR}/exclude .endif diff --git a/cross/binutils/files/exclude b/cross/binutils/files/exclude index b0349ef5bdf..2646d552222 100644 --- a/cross/binutils/files/exclude +++ b/cross/binutils/files/exclude @@ -1,3 +1,4 @@ -binutils-*/*/tests/* -binutils-*/*/testsuite/* -binutils-*/etc/* +binutils-\*/\*/tests/\* +binutils-\*/\*/testsuite/\* +binutils-\*/etc/\* +binutils-\*/gas/\* |