diff -u dumputils-1.0.0/debian/control dumputils-1.0.0/debian/control --- dumputils-1.0.0/debian/control +++ dumputils-1.0.0/debian/control @@ -1,7 +1,8 @@ Source: dumputils Section: admin Priority: extra -Maintainer: Troy Heber +XSBC-Original-Maintainer: Troy Heber +Maintainer: Ubuntu MOTU Developers Uploaders: Micah Anderson Build-Depends: debhelper (>= 4), dpatch Standards-Version: 3.6.2.1 diff -u dumputils-1.0.0/debian/changelog dumputils-1.0.0/debian/changelog --- dumputils-1.0.0/debian/changelog +++ dumputils-1.0.0/debian/changelog @@ -1,3 +1,13 @@ +dumputils (1.0.0-1ubuntu1) gutsy; urgency=low + + * Makefile: (LP: #136949) + - removed ARCH setting + * debian/rules: + - Added make call to know about ARCH setting (/usr/bin/arch is not + available in ubuntu somehow) + + -- Stephan Hermann Mon, 03 Sep 2007 10:18:49 +0200 + dumputils (1.0.0-1) unstable; urgency=low * Removed postinst (Closes: #353531) diff -u dumputils-1.0.0/debian/rules dumputils-1.0.0/debian/rules --- dumputils-1.0.0/debian/rules +++ dumputils-1.0.0/debian/rules @@ -39,9 +39,9 @@ build-stamp: configure-stamp dh_testdir - + ARCH=` dpkg-architecture -qDEB_BUILD_ARCH` # Add here commands to compile the package. - $(MAKE) + $(MAKE) ARCH=$ARCH touch build-stamp only in patch2: unchanged: --- dumputils-1.0.0.orig/Makefile +++ dumputils-1.0.0/Makefile @@ -1,4 +1,4 @@ -ARCH = $(shell arch | sed 's/i.86/i386/') +# ARCH = $(shell arch | sed 's/i.86/i386/') KERN = $(shell uname -r) KVER = $(shell uname -r | cut -d '.' -f 2) CFLAGS= -Wall -O -ggdb