pull-debian-source: Pass -xu arguments to dget to be consistant with pull-lp-source

This commit is contained in:
Nathan Handler 2009-01-02 10:37:12 -06:00
parent 64331d382f
commit bd824b9072
2 changed files with 7 additions and 2 deletions

7
debian/changelog vendored
View File

@ -1,10 +1,15 @@
ubuntu-dev-tools (0.52) UNRELEASED; urgency=low
[ Siegfried-Angel Gevatter Pujals ]
* pbuilder-dist.new:
- Add compatibility for cowbuilder. Once pbuilder-dist.new replaces
pbuilder-dist, we will also create a cowbuilder-dist symlink to it.
-- Siegfried-Angel Gevatter Pujals <rainct@ubuntu.com> Fri, 02 Jan 2009 14:40:51 +0100
[ Nathan Handler ]
* pull-debian-source: Pass -xu arguments to dget to be consistant with
pull-lp-source
-- Nathan Handler <nhandler@ubuntu.com> Fri, 02 Jan 2009 10:35:27 -0600
ubuntu-dev-tools (0.51) jaunty; urgency=low

View File

@ -28,7 +28,7 @@ my($release)=$ARGV[1] || 'unstable';
&checkRelease($release);
my($dsc)=&getDSC(&getMadison(&getURL($package,$release)));
print "$dsc\n";
exec("dget $dsc");
exec("dget -xu $dsc");
sub checkRelease {
my($release)=shift || die("No Release Passed To checkRelease!\n");
chomp $release;