From bf5e40c8a56c5d7c3f78b50d354bd6568190375a Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 14 Aug 2015 14:07:21 +0100 Subject: [PATCH] Convert to defvalopt: --distro, -d --- dgit | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/dgit b/dgit index f068df6a..89633444 100755 --- a/dgit +++ b/dgit @@ -3124,6 +3124,7 @@ sub defvalopt ($$$&) { defvalopt '--since-version', '-v', '[^_]+|_', sub { ($changes_since_version) = @_; }; +defvalopt '--distro', '-d', '.+', sub { ($idistro) = (@_); }; sub parseopts () { my $om; @@ -3189,9 +3190,6 @@ sub parseopts () { $initiator_tempdir =~ m#^/# or badusage "--initiator-tempdir must be used specify an". " absolute, not relative, directory." - } elsif (m/^--distro=(.*)/s) { - push @ropts, $_; - $idistro = $1; } elsif (m/^--build-products-dir=(.*)/s) { push @ropts, $_; $buildproductsdir = $1; @@ -3247,9 +3245,6 @@ sub parseopts () { } elsif (s/^-c(.*=.*)//s) { push @ropts, $&; push @git, '-c', $1; - } elsif (s/^-d(.+)//s) { - push @ropts, $&; - $idistro = $1; } elsif (s/^-C(.+)//s) { push @ropts, $&; $changesfile = $1; -- 2.30.2