mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 16:11:15 +00:00
Merged in Mitsuya Shibata's fix for detection of dget in a multiple path
environment.
This commit is contained in:
commit
6dbb193752
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -10,6 +10,9 @@ ubuntu-dev-tools (0.67) UNRELEASED; urgency=low
|
|||||||
* mk-sbuild-lv: Added support for Debian chroots. Updated manpage.
|
* mk-sbuild-lv: Added support for Debian chroots. Updated manpage.
|
||||||
(LP: #342158)
|
(LP: #342158)
|
||||||
|
|
||||||
|
[ Mitsuya Shibata ]
|
||||||
|
* pull-debian-source: Detect existence of dget in multi-path environment.
|
||||||
|
|
||||||
-- Jonathan Davies <jpds@ubuntu.com> Mon, 09 Mar 2009 16:03:09 +0000
|
-- Jonathan Davies <jpds@ubuntu.com> Mon, 09 Mar 2009 16:03:09 +0000
|
||||||
|
|
||||||
ubuntu-dev-tools (0.66) jaunty; urgency=low
|
ubuntu-dev-tools (0.66) jaunty; urgency=low
|
||||||
|
@ -22,7 +22,7 @@ use strict;
|
|||||||
use LWP::Simple;
|
use LWP::Simple;
|
||||||
use File::Basename;
|
use File::Basename;
|
||||||
|
|
||||||
die("Please install 'devscripts'\n") if(! grep -x "$_/dget",$ENV{'PATH'});
|
die("Please install 'devscripts'\n") if(! grep -x "$_/dget", split(':',$ENV{'PATH'}));
|
||||||
|
|
||||||
my($package)=$ARGV[0] || &usage();
|
my($package)=$ARGV[0] || &usage();
|
||||||
&usage() if(($package=~m/^\-\-help/i) || ($package=~m/^\-h/i));
|
&usage() if(($package=~m/^\-\-help/i) || ($package=~m/^\-h/i));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user