From: Steve Murphy Date: Thu, 20 Dec 2007 22:28:35 +0000 (+0000) Subject: closes issue #11287; thanks to snuffy for this fix, which will surely make all solari... X-Git-Tag: 1.6.0-beta1~3^2~343 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2679575473a3fc44c8e25c34c6081b3ab0aeab4d;p=thirdparty%2Fasterisk.git closes issue #11287; thanks to snuffy for this fix, which will surely make all solaris owners shout praises to his name. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@94319 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/build_tools/make_buildopts_h b/build_tools/make_buildopts_h index b98d875a05..ace4045551 100755 --- a/build_tools/make_buildopts_h +++ b/build_tools/make_buildopts_h @@ -26,6 +26,9 @@ case ${OSARCH} in # actually we should check build_os *BSD|mingw|darwin*) BUILDSUM=`echo ${TMP} | md5 | cut -c1-32` ;; +SunOS) + BUILDSUM=`echo ${TMP} | digest -a md5 | cut -c1-32` + ;; *) BUILDSUM=`echo ${TMP} | md5sum | cut -c1-32` ;;