summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-06-25 19:14:34 +0200
committerStefan Metzmacher <metze@samba.org>2008-06-27 09:22:21 +0200
commit274ae4b06a3d2e99ee4fd7f04430d361d500d451 (patch)
tree1a4089a71fab005c01ed4939d84f7e833a2f7f99
parent9cb5327ac9811b3c1309d0e4082da3f54ab2a050 (diff)
downloadsamba-274ae4b06a3d2e99ee4fd7f04430d361d500d451.tar.gz
mkversion.sh: printf %s is more portable than echo -e
metze
-rwxr-xr-xsource/script/mkversion.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/script/mkversion.sh b/source/script/mkversion.sh
index b6d82f87974..da912ac0927 100755
--- a/source/script/mkversion.sh
+++ b/source/script/mkversion.sh
@@ -77,10 +77,10 @@ if test x"${SAMBA_VERSION_IS_GIT_SNAPSHOT}" = x"yes";then
if test x"${HAVEVER}" != x"yes" -a -d "${SOURCE_DIR}../.git";then
HAVEGIT=no
GIT_INFO=`git show --pretty=format:"%h%n%ct%n%H%n%cd" --stat HEAD 2>/dev/null`
- GIT_COMMIT_ABBREV=`echo -e "${GIT_INFO}" | sed -n 1p`
- GIT_COMMIT_TIME=`echo -e "${GIT_INFO}" | sed -n 2p`
- GIT_COMMIT_FULLREV=`echo -e "${GIT_INFO}" | sed -n 3p`
- GIT_COMMIT_DATE=`echo -e "${GIT_INFO}" | sed -n 4p`
+ GIT_COMMIT_ABBREV=`printf %s "${GIT_INFO}" | sed -n 1p`
+ GIT_COMMIT_TIME=`printf %s "${GIT_INFO}" | sed -n 2p`
+ GIT_COMMIT_FULLREV=`printf %s "${GIT_INFO}" | sed -n 3p`
+ GIT_COMMIT_DATE=`printf %s "${GIT_INFO}" | sed -n 4p`
if test -n "${GIT_COMMIT_ABBREV}";then
HAVEGIT=yes
HAVEVER=yes