From 1197775435f7819cea90ae8b3da3f54c9e493cc4 Mon Sep 17 00:00:00 2001
From: Rene Engelhard <rene@debian.org>
Date: Wed, 25 Apr 2018 17:41:52 +0200
Subject: Revert "add "s to grep in distro-install-clean-up"

Makes completely no sense, the for already gives us the "broken" arguments

This reverts commit e0201bbb7f4e05bf3a4273eca6129e88a4d246f8.
---
 bin/distro-install-clean-up | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'bin')

diff --git a/bin/distro-install-clean-up b/bin/distro-install-clean-up
index 974043dd005e..701c9ffa0972 100755
--- a/bin/distro-install-clean-up
+++ b/bin/distro-install-clean-up
@@ -76,7 +76,7 @@ if test "z$DESTDIR" != "z" ; then
     echo "Checking for DESTDIR inside installed files..."
     found_destdir=
     for file in `find $DESTDIR -type f` ; do
-	grep -q "$DESTDIR" "$file" && echo "$file: includes the string \"$DESTDIR\"" && found_destdir=1
+	grep -q "$DESTDIR" $file && echo "$file: includes the string \"$DESTDIR\"" && found_destdir=1
     done
     if test "z$found_destdir" != "z" ; then
 	echo "!!!!!!!!!!!!!!!!!!!!!! WARNING !!!!!!!!!!!!!!!!!!!!!!"
-- 
cgit