diff -Nru brightd-0.4.1/debian/changelog brightd-0.4.1/debian/changelog --- brightd-0.4.1/debian/changelog 2014-02-07 22:58:26.000000000 +0000 +++ brightd-0.4.1/debian/changelog 2014-06-14 11:11:26.000000000 +0000 @@ -1,3 +1,11 @@ +brightd (0.4.1-1ubuntu1) utopic; urgency=medium + + * debian/patches/fix-ftbfs-with-binutils-gold: + - Reorder gcc flags to fix FTBFS with binutils-gold + (Closes: #751571) + + -- Angel Abad Sat, 14 Jun 2014 12:56:49 +0200 + brightd (0.4.1-1) unstable; urgency=low * Initial release, pick up from an old package by diff -Nru brightd-0.4.1/debian/control brightd-0.4.1/debian/control --- brightd-0.4.1/debian/control 2014-02-07 23:03:40.000000000 +0000 +++ brightd-0.4.1/debian/control 2014-06-14 11:15:57.000000000 +0000 @@ -1,7 +1,8 @@ Source: brightd Section: utils Priority: optional -Maintainer: Andrew Shadura +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Andrew Shadura Build-Depends: debhelper (>= 9), libx11-dev, x11proto-scrnsaver-dev, libxss-dev Standards-Version: 3.9.5 Homepage: http://pberndt.com/Programme/Linux/brightd/ diff -Nru brightd-0.4.1/debian/patches/fix-ftbfs-with-binutils-gold brightd-0.4.1/debian/patches/fix-ftbfs-with-binutils-gold --- brightd-0.4.1/debian/patches/fix-ftbfs-with-binutils-gold 1970-01-01 00:00:00.000000000 +0000 +++ brightd-0.4.1/debian/patches/fix-ftbfs-with-binutils-gold 2014-06-14 11:11:39.000000000 +0000 @@ -0,0 +1,15 @@ +Description: Fix ftbfs with binutils-gold +Author: Angel Abad +Bug-Debian: https://bugs.debian.org/751571 + +--- brightd-0.4.1.orig/Makefile ++++ brightd-0.4.1/Makefile +@@ -14,7 +14,7 @@ endif + all: brightd brightd.1 + + brightd: brightd.c +- gcc $(CFLAGS) $(A_CFLAGS) -o $@ $@.c ++ gcc $@.c $(CFLAGS) $(A_CFLAGS) -o $@ + + brightd.1: + sed -re 's/^\.nr no_x11 [01]/.nr no_x11 $(MAN_NO_X11)/' brightd.1.tpl > brightd.1 diff -Nru brightd-0.4.1/debian/patches/series brightd-0.4.1/debian/patches/series --- brightd-0.4.1/debian/patches/series 2014-02-07 23:03:16.000000000 +0000 +++ brightd-0.4.1/debian/patches/series 2014-06-14 10:56:37.000000000 +0000 @@ -1 +1,2 @@ manpage.diff +fix-ftbfs-with-binutils-gold