Package: ethstatus Version: 0.4.3 Severity: normal Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu oneiric ubuntu-patch
In Ubuntu, the attached patch was applied to achieve the following: * Makefile: reorder LDFLAGS to fix FTBFS from new DSO linking (LP: #770833) Thanks for considering the patch. -- System Information: Debian Release: squeeze/sid APT prefers natty-updates APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500, 'natty') Architecture: amd64 (x86_64) Kernel: Linux 2.6.38-11-generic (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -Nru ethstatus-0.4.3/debian/changelog ethstatus-0.4.3ubuntu1/debian/changelog diff -Nru ethstatus-0.4.3/debian/control ethstatus-0.4.3ubuntu1/debian/control --- ethstatus-0.4.3/debian/control 2006-10-19 17:09:01.000000000 -0600 +++ ethstatus-0.4.3ubuntu1/debian/control 2011-09-12 21:45:00.000000000 -0600 @@ -1,7 +1,8 @@ Source: ethstatus Section: net Priority: optional -Maintainer: Aurélien GÉRÔME <a...@roxor.cx> +Maintainer: Ubuntu Developers <ubuntu-devel-disc...@lists.ubuntu.com> +XSBC-Original-Maintainer: Aurélien GÉRÔME <a...@roxor.cx> Build-Depends: debhelper (>> 4.0.0), libncurses5-dev Standards-Version: 3.7.2 diff -Nru ethstatus-0.4.3/Makefile ethstatus-0.4.3ubuntu1/Makefile --- ethstatus-0.4.3/Makefile 2006-10-19 16:10:08.000000000 -0600 +++ ethstatus-0.4.3ubuntu1/Makefile 2011-09-12 21:39:12.000000000 -0600 @@ -19,7 +19,7 @@ all : ethstatus ethstatus : ethstatus.c ethstatus.h - gcc $(CFLAGS) $(LDFLAGS) -o ${BIN} ${SRC} + gcc $(CFLAGS) -o ${BIN} ${SRC} $(LDFLAGS) clean: rm -f ${BIN} *.o core *~