1
0
Fork 0
zutils/debian/patches/0002-zupdate.patch

16 lines
544 B
Diff
Raw Normal View History

Author: Daniel Baumann <mail@daniel-baumann.ch>
Description: Avoid linking zupdate statically.
diff -Naurp zutils.orig/Makefile.in zutils/Makefile.in
--- zutils.orig/Makefile.in
+++ zutils/Makefile.in
@@ -49,7 +49,7 @@ ztest : $(ztest_objs)
$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(ztest_objs)
zupdate : $(zupdate_objs)
- $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $(zupdate_objs)
+ $(CXX) $(CXXFLAGS) -o $@ $(zupdate_objs)
rc.o : rc.cc
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -DPROGVERSION=\"$(pkgversion)\" -DSYSCONFDIR=\"$(sysconfdir)\" -c -o $@ $<