[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, ng/master, updated. v1.12.2
From: |
Stefano Lattarini |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, ng/master, updated. v1.12.2-573-gb326614 |
Date: |
Sat, 21 Jul 2012 18:38:09 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=b326614ed4383f77146204065fdc1ba74bea2a5d
The branch, ng/master has been updated
via b326614ed4383f77146204065fdc1ba74bea2a5d (commit)
from 05c5e1bf8dbd4bd2f7f196e806466231278303af (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b326614ed4383f77146204065fdc1ba74bea2a5d
Author: Stefano Lattarini <address@hidden>
Date: Sat Jul 21 19:50:54 2012 +0200
[ng] maintcheck: fix a spurious failure
* 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 <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
t/clean-many2.sh | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/t/clean-many2.sh b/t/clean-many2.sh
index 61284ed..aab8263 100755
--- a/t/clean-many2.sh
+++ b/t/clean-many2.sh
@@ -26,7 +26,8 @@ echo AC_OUTPUT >> configure.ac
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
@@ -36,7 +37,7 @@ elif test $# -gt 50; 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
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, ng/master, updated. v1.12.2-573-gb326614,
Stefano Lattarini <=