summaryrefslogtreecommitdiff
path: root/packages/binutils/binutils-avr32.inc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/binutils/binutils-avr32.inc')
-rw-r--r--packages/binutils/binutils-avr32.inc36
1 files changed, 0 insertions, 36 deletions
diff --git a/packages/binutils/binutils-avr32.inc b/packages/binutils/binutils-avr32.inc
deleted file mode 100644
index bbae784011..0000000000
--- a/packages/binutils/binutils-avr32.inc
+++ /dev/null
@@ -1,36 +0,0 @@
-# Extra tasks required when using Atmel's patches to binutils
-# See http://avr32linux.org/twiki/bin/view/Main/BinutilsPatches for
-# more information
-
-
-do_avr32_reconf () {
- if test ${TARGET_ARCH} == avr32; then
- (cd ${S} && autoconf) || die "Error running autoconf"
- for dir in bfd opcodes binutils ld; do
- (cd "${S}/$dir" &&
- aclocal &&
- autoconf &&
- automake &&
- autoheader) || die "Error reconfiguring $dir"
- done
- fi
-}
-
-do_avr32_configure_bfd () {
- if test ${TARGET_ARCH} == avr32; then
- # fix Makefile brokenness due to unmatched single quotes
- (cd ${B} && sed -i -e "s,'CC=ccache,'CC=${CC}'," Makefile)
- # *_alias options are not supported in binutils 2.17 and need
- # to be removed
- (cd ${B} && sed -i -e "s,'host_alias=.*',," Makefile)
- (cd ${B} && sed -i -e "s,'build_alias=.*',," Makefile)
- (cd ${B} && sed -i -e "s,'target_alias=*.',," Makefile)
-
- (cd ${B} && make configure-bfd) || die "Error running 'make configure-bfd'"
- (cd ${B}/bfd && make headers) || die "Error running 'make headers'"
- fi
-}
-
-addtask avr32_reconf after do_patch before do_configure
-addtask avr32_configure_bfd after do_configure before do_compile
-