From: Stefan Metzmacher Date: Wed, 25 Jun 2008 17:14:34 +0000 (+0200) Subject: mkversion.sh: printf %s is more portable than echo -e X-Git-Tag: samba-4.0.0alpha5~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=274ae4b06a3d2e99ee4fd7f04430d361d500d451;p=thirdparty%2Fsamba.git mkversion.sh: printf %s is more portable than echo -e metze --- 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