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 e0201bbb7f.
This commit is contained in:
Rene Engelhard 2018-04-25 17:41:52 +02:00
parent e514db9567
commit 1197775435

View file

@ -76,7 +76,7 @@ if test "z$DESTDIR" != "z" ; then
echo "Checking for DESTDIR inside installed files..." echo "Checking for DESTDIR inside installed files..."
found_destdir= found_destdir=
for file in `find $DESTDIR -type f` ; do 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 done
if test "z$found_destdir" != "z" ; then if test "z$found_destdir" != "z" ; then
echo "!!!!!!!!!!!!!!!!!!!!!! WARNING !!!!!!!!!!!!!!!!!!!!!!" echo "!!!!!!!!!!!!!!!!!!!!!! WARNING !!!!!!!!!!!!!!!!!!!!!!"