From 4d3766818c0c3cbcb87331809868345f18351b10 Mon Sep 17 00:00:00 2001 From: Manuel Luis Sanmartin Rozada Date: Sat, 29 Sep 2012 21:45:33 +0200 Subject: [PATCH] The commit 3bda88e8b425f43644e303e6957e38ae59c1bc83 change the shell from sh to bash. To fix the configure script generation error: remove the echo whith \c used in sh. Note: bash is not installed in AIX by default. Signed-off-by: Florian Forster --- version-gen.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/version-gen.sh b/version-gen.sh index 97a27a0d..d6d7bb20 100755 --- a/version-gen.sh +++ b/version-gen.sh @@ -10,8 +10,4 @@ fi VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`" -if test "x`uname -s`" = "xAIX" ; then - echo "$VERSION\c" -else - echo -n "$VERSION" -fi +echo -n "$VERSION" -- 2.11.0