[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] GNU Inetutils branch, master, updated. inetutils-1_9_1-57-g4939ad
From: |
Mats Erik Andersson |
Subject: |
[SCM] GNU Inetutils branch, master, updated. inetutils-1_9_1-57-g4939ad9 |
Date: |
Wed, 14 Mar 2012 23:47: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 Inetutils ".
The branch, master has been updated
via 4939ad983e8e6456d2c03241b2bad9eb738c38d5 (commit)
from 4fc1f3e84a05ceba05ebe3a34d69faf3f36389fd (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 -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=4939ad983e8e6456d2c03241b2bad9eb738c38d5
commit 4939ad983e8e6456d2c03241b2bad9eb738c38d5
Author: Mats Erik Andersson <address@hidden>
Date: Thu Mar 15 00:44:12 2012 +0100
Shell portability issue in test.
diff --git a/ChangeLog b/ChangeLog
index 6cdd2c9..5730aa7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-03-15 Mats Erik Andersson <address@hidden>
+
+ * tests/dnsdomainname.sh: Replace `! test -x' by `test ! -x'
+ for shell portability.
+
2012-03-14 Simon Josefsson <address@hidden>
* tests/dnsdomainname.sh: Don't fail on configuration errors.
diff --git a/tests/dnsdomainname.sh b/tests/dnsdomainname.sh
index 4ebc1e7..83bf7de 100755
--- a/tests/dnsdomainname.sh
+++ b/tests/dnsdomainname.sh
@@ -21,7 +21,7 @@ set -e
DNSDOMAINNAME=${DNSDOMAINNAME:-../src/dnsdomainname$EXEEXT}
-if ! test -x $DNSDOMAINNAME; then
+if test ! -x $DNSDOMAINNAME; then
echo "No executable $DNSDOMAINNAME available. Skipping test."
exit 77
fi
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
tests/dnsdomainname.sh | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
hooks/post-receive
--
GNU Inetutils
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] GNU Inetutils branch, master, updated. inetutils-1_9_1-57-g4939ad9,
Mats Erik Andersson <=