Control: tags 925857 + pending Dear maintainer,
I've prepared an NMU for wireless-tools (versioned as 30~pre9-13.1) and uploaded it to mentor for sponsoring. Please feel free to tell me if I should remove it. -- Regards Sudip diff -Nru wireless-tools-30~pre9/debian/changelog wireless-tools-30~pre9/debian/changelog --- wireless-tools-30~pre9/debian/changelog 2018-09-15 15:35:08.000000000 +0100 +++ wireless-tools-30~pre9/debian/changelog 2020-03-07 20:59:05.000000000 +0000 @@ -1,3 +1,11 @@ +wireless-tools (30~pre9-13.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix ftbfs. (Closes: #925857) + - Thanks Reiner Herrmann. + + -- Sudip Mukherjee <sudipm.mukher...@gmail.com> Sat, 07 Mar 2020 20:59:05 +0000 + wireless-tools (30~pre9-13) unstable; urgency=medium * Call /sbin/ip instead of ifconfg in if-pre-up script. (Closes: 908886) diff -Nru wireless-tools-30~pre9/debian/patches/gcc9.patch wireless-tools-30~pre9/debian/patches/gcc9.patch --- wireless-tools-30~pre9/debian/patches/gcc9.patch 1970-01-01 01:00:00.000000000 +0100 +++ wireless-tools-30~pre9/debian/patches/gcc9.patch 2020-03-07 20:59:05.000000000 +0000 @@ -0,0 +1,15 @@ +Author: Reiner Herrmann <rei...@reiner-h.de> +Description: Fix build with gcc9 by moving linked libraries to the end +Bug-Debian: https://bugs.debian.org/925857 + +--- a/Makefile ++++ b/Makefile +@@ -150,7 +150,7 @@ + + # Compilation of the dynamic library + $(DYNAMIC): $(OBJS:.o=.so) +- $(CC) -shared -o $@ -Wl,-soname,$@ $(STRIPFLAGS) $(LIBS) $(LDFLAGS) -lc $^ ++ $(CC) -shared -o $@ -Wl,-soname,$@ $(STRIPFLAGS) $(LDFLAGS) $^ -lc $(LIBS) + + # Compilation of the static library + $(STATIC): $(OBJS:.o=.so) diff -Nru wireless-tools-30~pre9/debian/patches/series wireless-tools-30~pre9/debian/patches/series --- wireless-tools-30~pre9/debian/patches/series 2018-06-05 20:29:11.000000000 +0100 +++ wireless-tools-30~pre9/debian/patches/series 2020-03-07 20:59:05.000000000 +0000 @@ -5,3 +5,4 @@ add-import-type-to-udev-rules fix-typos improve-make-install +gcc9.patch