[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-536-g5ce110a |
Date: |
Sat, 21 Jul 2012 11:21:43 +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=5ce110a94aabb52b6756f4ff29c00414b56697f6
The branch, ng/master has been updated
via 5ce110a94aabb52b6756f4ff29c00414b56697f6 (commit)
from d6af7e632ab0b2fa8198118f852a9fa40fabac52 (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 5ce110a94aabb52b6756f4ff29c00414b56697f6
Author: Stefano Lattarini <address@hidden>
Date: Sat Jul 21 13:18:02 2012 +0200
[ng] tests: fix unportable $((...)) usage
* t/longline.sh: Use "$i", not bare "i", to reference the value of
the shell variable 'i' in a $((...)) expression. Issue revealed by
a failure with dash 0.5.2.
Signed-off-by: Stefano Lattarini <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
t/longline.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/t/longline.sh b/t/longline.sh
index 2536846..25acc67 100755
--- a/t/longline.sh
+++ b/t/longline.sh
@@ -22,7 +22,7 @@
i=0
while test $i -lt 30; do
echo some_very_very_long_variable_content_$i
- i=$((i + 1))
+ i=$(($i + 1))
done > t
{ echo "DUMMY =" && sed 's/^/DUMMY +=/' t; } > Makefile.am
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-536-g5ce110a,
Stefano Lattarini <=