summaryrefslogtreecommitdiff
path: root/dpkg-deb/main.c
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2012-04-09 02:49:51 +0200
committerGuillem Jover <guillem@debian.org>2012-04-09 16:32:10 +0200
commit836d2e5c36efb5f7eacc718bec1d72b288960ea9 (patch)
tree46d7a3731ddf8bd25a7c08a2e4f73f0026dcbf02 /dpkg-deb/main.c
parent1faa57aa18fbd23ae319c76ea20bae64954285bf (diff)
downloaddpkg-836d2e5c36efb5f7eacc718bec1d72b288960ea9.tar.gz
dpkg-deb: Always build new format by default
Remove possibility to change default deb format through a macro when building the source.
Diffstat (limited to 'dpkg-deb/main.c')
-rw-r--r--dpkg-deb/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/dpkg-deb/main.c b/dpkg-deb/main.c
index 32ef77fb2..7ead38001 100644
--- a/dpkg-deb/main.c
+++ b/dpkg-deb/main.c
@@ -134,7 +134,9 @@ static const char printforhelp[] =
N_("Type dpkg-deb --help for help about manipulating *.deb files;\n"
"Type dpkg --help for help about installing and deinstalling packages.");
-int debugflag=0, nocheckflag=0, oldformatflag=BUILDOLDPKGFORMAT;
+int debugflag = 0;
+int nocheckflag = 0;
+int oldformatflag = 0;
int opt_verbose = 0;
struct compress_params compress_params = {
.type = compressor_type_gzip,