projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
80a66a5
)
The commit 3bda88e8b425f43644e303e6957e38ae59c1bc83 change the shell from sh to bash.
author
Manuel Luis Sanmartin Rozada
<manuel.luis@gmail.com>
Sat, 29 Sep 2012 19:45:33 +0000
(21:45 +0200)
committer
Florian Forster
<octo@collectd.org>
Tue, 2 Oct 2012 07:44:51 +0000
(09:44 +0200)
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 <octo@collectd.org>
version-gen.sh
patch
|
blob
|
history
diff --git
a/version-gen.sh
b/version-gen.sh
index
97a27a0
..
d6d7bb2
100755
(executable)
--- 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"