diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2013-10-03 14:45:41 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2013-10-03 14:45:41 +0200 |
commit | 866893a619e00966ae6b1549c4bfce92d6c17db1 (patch) | |
tree | 6f80b022d9216fa3601ba55b1190778a882932dc /apt-private/makefile | |
parent | 3c8030a4977536e9d3a1954adc68082ae1c6d5a2 (diff) |
put fetch errors in 'source' on our errorstack
refactor the fetching process so that it looks more like the
others we have in the hope that we can reuse code in the future.
This is a soft interface change as 'source' previously printed
errors directly on stderr, while it will now push it onto our usual
error stack.
Diffstat (limited to 'apt-private/makefile')
-rw-r--r-- | apt-private/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-private/makefile b/apt-private/makefile index 8feb1ce6c..1d179f0b2 100644 --- a/apt-private/makefile +++ b/apt-private/makefile @@ -17,7 +17,7 @@ MAJOR=0.0 MINOR=0 SLIBS=$(PTHREADLIB) -lapt-pkg -PRIVATES=list install output cachefile cacheset update upgrade cmndline moo search show main +PRIVATES=list install download output cachefile cacheset update upgrade cmndline moo search show main SOURCE += $(foreach private, $(PRIVATES), private-$(private).cc) HEADERS += $(foreach private, $(PRIVATES), private-$(private).h) |