diff -Nru abr2gbr-1.0.2/debian/changelog abr2gbr-1.0.2/debian/changelog --- abr2gbr-1.0.2/debian/changelog 2010-08-27 19:13:41.000000000 +0000 +++ abr2gbr-1.0.2/debian/changelog 2010-12-19 12:55:08.000000000 +0000 @@ -1,3 +1,10 @@ +abr2gbr (1:1.0.2-2ubuntu1) natty; urgency=low + + * debian/patches/fix_link_order: Fix link order in Makefile for + --as-needed linker flag. + + -- Stefan Potyra Sun, 19 Dec 2010 13:54:47 +0100 + abr2gbr (1:1.0.2-2) unstable; urgency=low * updated debian/rules diff -Nru abr2gbr-1.0.2/debian/control abr2gbr-1.0.2/debian/control --- abr2gbr-1.0.2/debian/control 2010-08-27 19:13:41.000000000 +0000 +++ abr2gbr-1.0.2/debian/control 2010-12-19 12:55:31.000000000 +0000 @@ -1,7 +1,8 @@ Source: abr2gbr Section: x11 Priority: extra -Maintainer: alice ferrazzi (aliceinwire) +XSBC-Original-Maintainer: alice ferrazzi (aliceinwire) +Maintainer: Ubuntu Developers Build-Depends: debhelper (>= 7.0.50~), libglib2.0-dev Standards-Version: 3.9.1 Homepage: http://www.sunnyspot.org/gimp/tools.html diff -Nru abr2gbr-1.0.2/debian/patches/fix_link_order abr2gbr-1.0.2/debian/patches/fix_link_order --- abr2gbr-1.0.2/debian/patches/fix_link_order 1970-01-01 00:00:00.000000000 +0000 +++ abr2gbr-1.0.2/debian/patches/fix_link_order 2010-12-19 12:56:00.000000000 +0000 @@ -0,0 +1,13 @@ +Index: abr2gbr-1.0.2/Makefile +=================================================================== +--- abr2gbr-1.0.2.orig/Makefile 2010-12-19 13:55:44.482866917 +0100 ++++ abr2gbr-1.0.2/Makefile 2010-12-19 13:55:58.592866917 +0100 +@@ -44,7 +44,7 @@ + $(CC) -o $@ $(CFLAGS) -c $< + + $(OBJDIR)/$(BIN): $(DESTS) +- $(CC) -o $@ $(CFLAGS) $(LIBS) $(DESTS) ++ $(CC) -o $@ $(CFLAGS) $(DESTS) $(LIBS) + if [ ! -L $(BIN) ]; then \ + ln -s $(OBJDIR)/$(BIN) .; \ + ln -s $(OBJDIR)/$(BIN) jbr2gbr; \ diff -Nru abr2gbr-1.0.2/debian/patches/series abr2gbr-1.0.2/debian/patches/series --- abr2gbr-1.0.2/debian/patches/series 2010-08-27 19:37:09.000000000 +0000 +++ abr2gbr-1.0.2/debian/patches/series 2010-12-19 12:55:42.000000000 +0000 @@ -1 +1,2 @@ fix_compile_flags-1:1.0.2-2 +fix_link_order