#! /bin/sh /usr/share/dpatch/dpatch-run ## 804-xargs-fix-bts-399322.dpatch by Alexander Kanevskiy > ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Ignore errors for ARM binaries which binutils-multiarch can't parse @DPATCH@ --- lintian/collection/file-info 2007-05-22 12:31:27.000000000 +0300 +++ lintian/collection/file-info 2007-03-10 08:55:49.000000000 +0200 @@ -16,8 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, you can find it on the World Wide # Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free -# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, -# MA 02111-1307, USA. +# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, +# MA 02110-1301, USA. use strict; @@ -44,7 +44,8 @@ chop; $_ = (split(" ", $_, 6))[5]; s/ link to .*//; - s/ -> .*//; + s/ -> .*//; + s/(\G|[^\\](?:\\\\)*)\\(\d{3})/"$1" . chr(oct $2)/ge; s/\\\\/\\/; printf $XARGS "%s\0", $_; }