summaryrefslogtreecommitdiffstats
path: root/scripts/ubuntu/edgy
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2009-03-16 12:14:55 (GMT)
committerColin Watson <cjwatson@debian.org>2009-03-16 12:14:55 (GMT)
commit253678c4ffcda3ef52f6ec3d3037685004f79aa7 (patch)
tree0fa93400c48253d11672206f6d21671f60196e17 /scripts/ubuntu/edgy
parent21ea52186c5e6a8c9b7760306532aae3e3de7c2f (diff)
downloaddebootstrap-253678c4ffcda3ef52f6ec3d3037685004f79aa7.zip
debootstrap-253678c4ffcda3ef52f6ec3d3037685004f79aa7.tar.gz
debootstrap-253678c4ffcda3ef52f6ec3d3037685004f79aa7.tar.bz2
match libc changes for Ubuntu
r57841
Diffstat (limited to '')
-rw-r--r--scripts/ubuntu/edgy8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/ubuntu/edgy b/scripts/ubuntu/edgy
index 72ebc9b..0dbc5dc 100644
--- a/scripts/ubuntu/edgy
+++ b/scripts/ubuntu/edgy
@@ -15,10 +15,10 @@ if doing_variant fakechroot; then
test "$FAKECHROOT" = "true" || error 1 FAKECHROOTREQ "This variant requires fakechroot environment to be started"
fi
-LIBC=libc6
-if [ "$ARCH" = "alpha" ] || [ "$ARCH" = "ia64" ]; then
- LIBC="libc6.1"
-fi
+case $ARCH in
+ alpha|ia64) LIBC="libc6.1" ;;
+ *) LIBC="libc6" ;;
+esac
work_out_debs () {
required="$(get_debs Priority: required)"