Use the fix suggested by Tilghman on the -dev to make cutting up the BUILDSUM

friendly to non-bash shells.  I think this should work for BSD/mingw as well,
but did not yet remove the switch statement.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89359 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2007-11-17 06:07:57 +00:00
parent ba7113ea17
commit 1529586f21
1 changed files with 1 additions and 1 deletions

View File

@ -29,6 +29,6 @@ case ${OSARCH} in # actually we should check build_os
;;
*)
BUILDSUM=`echo ${TMP} | md5sum`
echo "#define AST_BUILDOPT_SUM {0x${BUILDSUM:0:8}, 0x${BUILDSUM:8:8}, 0x${BUILDSUM:16:8}, 0x${BUILDSUM:24:8}}"
echo "#define AST_BUILDOPT_SUM { `echo -n ${BUILDSUM} | cut -c1-8`, `echo -n ${BUILDSUM} | cut -c9-16`, `echo -n ${BUILDSUM} | cut -c17-24`, `echo -n ${BUILDSUM} | cut -c25-32` }"
;;
esac