summaryrefslogtreecommitdiffstats
path: root/debootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'debootstrap')
-rwxr-xr-xdebootstrap3
1 files changed, 3 insertions, 0 deletions
diff --git a/debootstrap b/debootstrap
index fc2b677..ee367af 100755
--- a/debootstrap
+++ b/debootstrap
@@ -295,6 +295,9 @@ if [ "$ARCH" != "" ]; then
elif [ -x /usr/bin/dpkg ] && \
/usr/bin/dpkg --print-installation-architecture >/dev/null 2>&1; then
ARCH=`/usr/bin/dpkg --print-installation-architecture`
+elif type udpkg >/dev/null 2>&1 && \
+ udpkg --print-architecture >/dev/null 2>&1; then
+ ARCH=`/usr/bin/udpkg --print-architecture`
elif [ -e $DEBOOTSTRAP_DIR/arch ]; then
ARCH=`cat $DEBOOTSTRAP_DIR/arch`
else