From: Tzafrir Cohen Date: Wed, 28 Oct 2009 20:50:52 +0000 (+0000) Subject: remove empty awk pattern (//) X-Git-Tag: 11.0.0-beta1~3962 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bd895b24b0dcd95554d34522a478208d7a536b3;p=thirdparty%2Fasterisk.git remove empty awk pattern (//) Solaris 10 nawk doesn't lthe empty pattern ike '//' for 'always'. Just remove that. No pattern at all always matches. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@226453 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/build_tools/get_documentation b/build_tools/get_documentation index 7849c522ac..3c0e4980a7 100644 --- a/build_tools/get_documentation +++ b/build_tools/get_documentation @@ -1,3 +1,3 @@ /\/\*\*\* DOCUMENTATION/ {printit=1; next} /\*\*\*\// {if (printit) exit} -// {if (printit) print} +{if (printit) print}