#!/bin/sh -e ## http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=557620 if [ $# -ne 1 ]; then echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 fi [ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts patch_opts="${patch_opts:--f --no-backup-if-mismatch}" case "$1" in -patch) patch $patch_opts -p1 < $0;; -unpatch) patch $patch_opts -p1 -R < $0;; *) echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1;; esac exit 0 diff -Naur binutils-2.20.orig/bfd/configure binutils-2.20/bfd/configure --- binutils-2.20.orig/bfd/configure 2009-10-16 07:47:47.000000000 -0400 +++ binutils-2.20/bfd/configure 2009-10-19 03:31:26.000000000 -0400 @@ -4116,7 +4116,7 @@ # Define the identity of the package. PACKAGE=bfd - VERSION=2.20 + VERSION=2.20.0 cat >>confdefs.h <<_ACEOF diff -Naur binutils-2.20.orig/bfd/configure.in binutils-2.20/bfd/configure.in --- binutils-2.20.orig/bfd/configure.in 2009-10-16 07:47:44.000000000 -0400 +++ binutils-2.20/bfd/configure.in 2009-10-16 09:09:03.000000000 -0400 @@ -8,7 +8,7 @@ AC_CANONICAL_TARGET AC_ISC_POSIX -AM_INIT_AUTOMAKE(bfd, 2.20) +AM_INIT_AUTOMAKE(bfd, 2.20.0) dnl These must be called before LT_INIT, because it may want dnl to call AC_CHECK_PROG.