[asterisk-commits] murf: trunk r94319 - /trunk/build_tools/make_buildopts_h

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Dec 20 16:28:35 CST 2007


Author: murf
Date: Thu Dec 20 16:28:35 2007
New Revision: 94319

URL: http://svn.digium.com/view/asterisk?view=rev&rev=94319
Log:
closes issue #11287; thanks to snuffy for this fix, which will surely make all solaris owners shout praises to his name.

Modified:
    trunk/build_tools/make_buildopts_h

Modified: trunk/build_tools/make_buildopts_h
URL: http://svn.digium.com/view/asterisk/trunk/build_tools/make_buildopts_h?view=diff&rev=94319&r1=94318&r2=94319
==============================================================================
--- trunk/build_tools/make_buildopts_h (original)
+++ trunk/build_tools/make_buildopts_h Thu Dec 20 16:28:35 2007
@@ -26,6 +26,9 @@
 *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`
 	;;




More information about the asterisk-commits mailing list