diff --git a/debian/changelog b/debian/changelog index aaee2e1..e6fbf46 100644 --- a/debian/changelog +++ b/debian/changelog @@ -30,7 +30,11 @@ ubuntu-dev-tools (0.25) UNRELEASED; urgency=low * Remove duplicated ubuntu-dev-tools recommends (it's already a dependency). - -- Michael Bienia Sat, 19 Jan 2008 16:18:45 +0100 + [ Stephan Hermann ] + * mk-sbuild-lv: check for debootstrap release names in + /usr/share/debootstreap/releases and not in /usr/lib/debootstrap/releases + + -- Stephan Hermann Sun, 20 Jan 2008 00:39:48 +0100 ubuntu-dev-tools (0.24) hardy; urgency=low diff --git a/mk-sbuild-lv b/mk-sbuild-lv index 0a7a892..18d7c46 100755 --- a/mk-sbuild-lv +++ b/mk-sbuild-lv @@ -163,7 +163,7 @@ if [ `sudo vgdisplay -c "$VG" | wc -l` -eq 0 ]; then fi # Is the specified release known to debootstrap? -if [ ! -f "/usr/lib/debootstrap/scripts/$RELEASE" ]; then +if [ ! -f "/usr/share/debootstrap/scripts/$RELEASE" ]; then echo "Specified release not known to debootstrap" >&2 exit 1 else