X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=dgit;h=b6e79e36bca1ca1b1cd1cd124c0593c626bd275e;hb=98cc9f5ee0e1a448c10dbee264fa8ada8d023e54;hp=37b235b33e4a4741b16c328304915bf1d95f41f3;hpb=5616b78952e95f848c30600f23ca34db0bd4148b;p=dgit.git diff --git a/dgit b/dgit index 37b235b3..b6e79e36 100755 --- a/dgit +++ b/dgit @@ -37,7 +37,7 @@ our $dryrun = 0; our $changesfile; our $new_package = 0; our $existing_package = 'dpkg'; -our $clean = 'dpkg-source'; +our $cleanmode = 'dpkg-source'; our %format_ok = map { $_=>1 } ("1.0","3.0 (native)","3.0 (quilt)"); @@ -1008,7 +1008,7 @@ sub build_source { chdir $pwd or die $!; runcmd_ordryrun qw(sh -ec), 'exec >$1; shift; exec "$@"','x', - $sourcechanges, + "../$sourcechanges", @dpkggenchanges, qw(-S), changesopts(); } } @@ -1101,6 +1101,12 @@ sub parseopts () { $changesfile = $1; } elsif (s/^-k(.*)//s) { $keyid=$1; + } elsif (s/^-wn//s) { + $cleanmode = 'none'; + } elsif (s/^-wg//s) { + $cleanmode = 'git'; + } elsif (s/^-wd//s) { + $cleanmode = 'dpkg-source'; } else { badusage "unknown short option \`$_'"; }