diff options
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-get.cc | 3 | ||||
-rw-r--r-- | cmdline/makefile | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 4f8de001f..95859c811 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-get.cc,v 1.4 1998/10/20 04:33:18 jgg Exp $ +// $Id: apt-get.cc,v 1.5 1998/10/24 04:58:08 jgg Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -782,6 +782,7 @@ int main(int argc,const char *argv[]) {'f',"fix-broken","APT::Get::Fix-Broken",0}, {'u',"show-upgraded","APT::Get::Show-Upgraded",0}, {'m',"ignore-missing","APT::Get::Fix-Broken",0}, + {0,"ignore-hold","APT::Ingore-Hold",0}, {'c',"config-file",0,CommandLine::ConfigFile}, {'o',"option",0,CommandLine::ArbItem}, {0,0,0,0}}; diff --git a/cmdline/makefile b/cmdline/makefile index 65139c032..a6911c991 100644 --- a/cmdline/makefile +++ b/cmdline/makefile @@ -7,12 +7,12 @@ include ../buildlib/defaults.mak # The apt-cache program PROGRAM=apt-cache -SLIBS = -lapt-pkg +SLIBS = -lapt-pkg SOURCE = apt-cache.cc include $(PROGRAM_H) # The apt-config program PROGRAM=apt-get -SLIBS = -lapt-pkg +SLIBS = -lapt-pkg SOURCE = apt-get.cc include $(PROGRAM_H) |