mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-14 00:21:08 +00:00
* pbuilder-dist:
- Eliminated some warning with a better check for whether a given distro already has a pbuilder chroot in $BASE_DIR, when that distro is not known by the script - Added intrepid as a known distro
This commit is contained in:
parent
c35c9c1246
commit
e1138e8482
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -11,6 +11,11 @@ ubuntu-dev-tools (0.45ubuntu1) intrepid; urgency=low
|
||||
readable/writable, and note which control files we are going to modify
|
||||
- at the end, only modify those control files, so that the script doesn't
|
||||
return 1 anymore when it was actually successful
|
||||
* pbuilder-dist:
|
||||
- Eliminated some warning with a better check for whether a given distro
|
||||
already has a pbuilder chroot in $BASE_DIR, when that distro is not
|
||||
known by the script
|
||||
- Added intrepid as a known distro
|
||||
|
||||
[ Jonathan Patrick Davies ]
|
||||
* buildd: Revert arch:status string format.
|
||||
|
@ -183,7 +183,7 @@ fi
|
||||
# Check if the distribution exists, and fill the variables that change
|
||||
# depending on wheter the target distribution is Ubuntu or Debian.
|
||||
case $DISTRIBUTION in
|
||||
dapper|edgy|feisty|gutsy|hardy)
|
||||
dapper|edgy|feisty|gutsy|hardy|intrepid)
|
||||
distdata ubuntu
|
||||
;;
|
||||
|
||||
@ -192,7 +192,7 @@ case $DISTRIBUTION in
|
||||
;;
|
||||
|
||||
*)
|
||||
if [ ! -d $BASE_DIR/${DISTRIBUTION}-* ]
|
||||
if [ ! -f $BASE_DIR/${DISTRIBUTION}-${ARCHITECTURE}-base.tgz ]
|
||||
then
|
||||
echo -n "Warning: Unknown distribution «$DISTRIBUTION». Do you want to continue [y/N]? "
|
||||
read continue
|
||||
|
Loading…
x
Reference in New Issue
Block a user