wireshark: security bump to version 2.2.4
[buildroot-gz.git] / package / autossh / 0001-honour-LDFLAGS.patch
blob2e6160b8fda03122f278e9b2b98fea775800bc20
1 Honour LDFLAGS, especially required when static linking
3 Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
5 diff -Nur autossh-1.4e.orig/Makefile.in autossh-1.4e/Makefile.in
6 --- autossh-1.4e.orig/Makefile.in 2015-02-10 05:41:58.000000000 +0100
7 +++ autossh-1.4e/Makefile.in 2016-11-25 12:49:06.052122855 +0100
8 @@ -31,7 +31,7 @@
11 $(TARGET): $(OFILES)
12 - $(CC) $(CPPFLAGS) -o $(TARGET) $(OFILES) $(LIBS)
13 + $(CC) $(CPPFLAGS) $(LDFLAGS) -o $(TARGET) $(OFILES) $(LIBS)
15 clean:
16 - /bin/rm -f *.o *.a *.core *~