]> piware.de Git - bin.git/commitdiff
makechroot: fix nonbreakable spaces
authormartin@piware.de <>
Mon, 15 Jan 2007 07:37:55 +0000 (08:37 +0100)
committermartin@piware.de <>
Mon, 15 Jan 2007 07:37:55 +0000 (08:37 +0100)
makechroot

index 405a461340f260ed60a8090f676970583a70e2ce..1028c213ba6e197a3531a86c2ee867036afffb51 100755 (executable)
@@ -3,7 +3,8 @@ DIST="$1"
 DIR="$2"
 MIRROR="$3"
 
-debootstrap "$DIST" "$DIR" $MIRROR
+mkdir -p "$DIR"
+debootstrap "$DIST" "$DIR" "$MIRROR"
 
 # debian_chroot
 echo $DIST > $DIR/etc/debian_chroot
@@ -12,7 +13,7 @@ echo $DIST > $DIR/etc/debian_chroot
 perl -naF: -e 'print if $F[2] >= 1000 and $F[2] < 2000' /etc/passwd >> $DIR/etc/passwd
 
 # locale
-chroot $DIR locale-gen $LANG
+chroot $DIR locale-gen $LANG
 
 # bind mounts
 if ! grep -q $DIR /etc/fstab; then
@@ -45,5 +46,5 @@ EOF
 chroot $DIR apt-get update
 
 # common packages for development
-chroot $DIR apt-get install -y build-essential devscripts fakeroot
+chroot $DIR apt-get install -y build-essential devscripts fakeroot