* t/clean-many2.sh: Add redundant quoting to 'rm', to avoid triggering
a failure in the 'sc_rm_minus_f' maintainer check.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
oPATH=$PATH; export oPATH
mkdir bin
-cat > bin/rm <<'END'
+# Redundant quoting of 'rm' (here and below) to please maintainer-check.
+cat > bin/'rm' <<'END'
#!/bin/sh
PATH=$oPATH; export PATH
if test $# -eq 0; then
echo "rm: argument list too long ($# arguments)" >&2
exit 1
fi
-exec rm "$@"
+exec 'rm' "$@"
END
chmod a+x bin/rm
PATH=$(pwd)/bin$PATH_SEPARATOR$PATH; export PATH