bootstrap: fix shellcheck warnings

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I86ef079c9632e5563a1a56d6a2e23aad59ecbc57
diff --git a/bootstrap.sh b/bootstrap.sh
index bb06e73..fd1cf12 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -8,13 +8,14 @@
     clean)
         test -f Makefile && make maintainer-clean
         test -f linux/bt-bmc.h && rm -rf linux/bt-bmc.h
-        test -d linux && find linux -type d -empty | xargs -r rm -rf
+        test -d linux && find linux -type d -empty -print0 | xargs -0 -r rm -rf
         for file in ${AUTOCONF_FILES}; do
-            find -name "$file" | xargs -r rm -rf
+            find . -name "$file" -print0 | xargs -0 -r rm -rf
         done
         exit 0
         ;;
 esac
 
 autoreconf -i
+# shellcheck disable=SC2016
 echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'