summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCyril Brulebois <kibi@debian.org>2012-11-20 22:48:34 (GMT)
committerCyril Brulebois <kibi@debian.org>2012-11-20 22:48:34 (GMT)
commite83947f73e4245e3df8f8094a862d43d7f18c4c0 (patch)
tree55cea4c14f74fc78f8cc7adfa6c20f8a1f2f7c89
parent86db0922222c894a98dab6e688ec15d64b38489f (diff)
downloaddebootstrap-e83947f73e4245e3df8f8094a862d43d7f18c4c0.zip
debootstrap-e83947f73e4245e3df8f8094a862d43d7f18c4c0.tar.gz
debootstrap-e83947f73e4245e3df8f8094a862d43d7f18c4c0.tar.bz2
Remove double quotes to fix for loop on GNU/kFreeBSD, thanks to Oleg Ginzburg (Closes: #693718).
-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