debian: don't bomb out if DEB_BUILD_OPTIONS contains nostrip

The debugging packages will contain no debugging symbols (since they
are in the unstripped executables and libraries) but at least the
build won't crash.

Addresses-Debian-Bug: #627535

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
diff --git a/debian/rules b/debian/rules
index 84643b5..6b55b90 100755
--- a/debian/rules
+++ b/debian/rules
@@ -499,6 +499,7 @@
 	rm -rf ${uuidudebdir}/usr
 endif
 
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
 	mkdir -p ${debugdir}/$(USRLIB)
 	mv ${maindir}/usr/lib/debug ${debugdir}/$(USRLIB)
 	rm -rf ${maindir}/usr/lib/debug
@@ -533,6 +534,7 @@
 	mv ${libblkiddir}/usr/lib/debug ${libblkiddbgdir}/$(USRLIB)
 	rmdir ${libblkiddir}/usr/lib
 endif
+endif
 
 	# dpkg symbol handling
 ifneq (,$(findstring update-symbols,$(DEB_BUILD_OPTIONS)))