summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rwxr-xr-xdebootstrap2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index d9ed53e..c695b55 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+debootstrap (1.0.44) UNRELEASED; urgency=low
+
+ * Remove double quotes to fix for loop on GNU/kFreeBSD, thanks to
+ Oleg Ginzburg (Closes: #693718).
+
+ -- Cyril Brulebois <kibi@debian.org> Tue, 20 Nov 2012 23:47:37 +0100
+
debootstrap (1.0.43) unstable; urgency=low
[ Joey Hess ]
diff --git a/debootstrap b/debootstrap
index 6130829..f336164 100755
--- a/debootstrap
+++ b/debootstrap
@@ -433,7 +433,7 @@ if [ -z "$ARCH" ] || [ -z "$HOST_OS" ]; then
fi
if [ "$HOST_OS" = "kfreebsd" ] || [ "$HOST_OS" = "freebsd" ]; then
- for module in "linprocfs fdescfs tmpfs linsysfs"; do
+ for module in linprocfs fdescfs tmpfs linsysfs; do
kldstat -m "$module" > /dev/null 2>&1 || warning SANITYCHECK "Probably required module %s is not loaded" "$module"
done
fi