[svn-commits] tzafrir: branch 1.6.2 r226486 - in /branches/1.6.2: ./ build_tools/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Oct 28 16:32:31 CDT 2009


Author: tzafrir
Date: Wed Oct 28 16:32:28 2009
New Revision: 226486

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=226486
Log:
remove empty awk pattern (//)

Solaris 10 nawk doesn't like the empty pattern such as '//' for 'always'.
Just remove that. No pattern at all always matches.

Merged revisions 226453 via svnmerge from 
http://svn.digium.com/svn/asterisk/trunk

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/build_tools/get_documentation

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/build_tools/get_documentation
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/build_tools/get_documentation?view=diff&rev=226486&r1=226485&r2=226486
==============================================================================
--- branches/1.6.2/build_tools/get_documentation (original)
+++ branches/1.6.2/build_tools/get_documentation Wed Oct 28 16:32:28 2009
@@ -1,3 +1,3 @@
 /\/\*\*\* DOCUMENTATION/ {printit=1; next}
 /\*\*\*\// {if (printit) exit}
-// {if (printit) print}
+{if (printit) print}




More information about the svn-commits mailing list