Kaydet (Commit) 11977754 authored tarafından Rene Engelhard's avatar Rene Engelhard

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 e0201bbb.
üst e514db95
......@@ -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 !!!!!!!!!!!!!!!!!!!!!!"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment