summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2012-03-20 17:08:08 +0100
committerDavid Kalnischkies <kalnischkies@gmail.com>2012-03-20 17:08:08 +0100
commit771ad846826482b925830b1afd562d0e9372fea5 (patch)
treee31ce1bf1f2974c173e35cf14464d9285104f93b
parent31bda5000136d77f516cf2080257835fb44deaef (diff)
* methods/makefile:
- do not link rred against libz anymore as FileFd handles all this transparently now
-rw-r--r--debian/changelog5
-rw-r--r--methods/makefile2
2 files changed, 5 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 22ed8a5a5..93d48c22a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -19,8 +19,11 @@ apt (0.8.16~exp14) UNRELEASED; urgency=low
- check return of chdir() as gcc recommends
* apt-pkg/contrib/netrc.cc:
- check return of asprintf() as gcc recommends
+ * methods/makefile:
+ - do not link rred against libz anymore as FileFd handles all
+ this transparently now
- -- David Kalnischkies <kalnischkies@gmail.com> Tue, 20 Mar 2012 17:00:14 +0100
+ -- David Kalnischkies <kalnischkies@gmail.com> Tue, 20 Mar 2012 17:06:08 +0100
apt (0.8.16~exp13) experimental; urgency=low
diff --git a/methods/makefile b/methods/makefile
index 6ba51058e..6f904d071 100644
--- a/methods/makefile
+++ b/methods/makefile
@@ -67,7 +67,7 @@ include $(PROGRAM_H)
# The rred method
PROGRAM=rred
-SLIBS = -lapt-pkg -lz $(SOCKETLIBS) $(INTLLIBS)
+SLIBS = -lapt-pkg $(SOCKETLIBS) $(INTLLIBS)
LIB_MAKES = apt-pkg/makefile
SOURCE = rred.cc
include $(PROGRAM_H)