[svn-commits] seanbright: trunk r139915 - in /trunk: ./ build_tools/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Aug 25 16:32:10 CDT 2008


Author: seanbright
Date: Mon Aug 25 16:32:10 2008
New Revision: 139915

URL: http://svn.digium.com/view/asterisk?view=rev&rev=139915
Log:
Merged revisions 139909 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r139909 | seanbright | 2008-08-25 17:31:03 -0400 (Mon, 25 Aug 2008) | 9 lines

Some versions of awk (nawk, for example) don't like empty regular expressions
so be slightly more verbose.

(closes issue #13374)
Reported by: dougm
Patches:
      13374.diff uploaded by seanbright (license 71)
Tested by: dougm

........

Modified:
    trunk/   (props changed)
    trunk/build_tools/get_makeopts
    trunk/build_tools/get_moduleinfo

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/build_tools/get_makeopts
URL: http://svn.digium.com/view/asterisk/trunk/build_tools/get_makeopts?view=diff&rev=139915&r1=139914&r2=139915
==============================================================================
--- trunk/build_tools/get_makeopts (original)
+++ trunk/build_tools/get_makeopts Mon Aug 25 16:32:10 2008
@@ -1,3 +1,3 @@
 /\/\*\*\* MAKEOPTS/ {printit=1; next}
 /\*\*\*\// {if (printit) exit}
-// {if (printit) print}
+/.*/ {if (printit) print}

Modified: trunk/build_tools/get_moduleinfo
URL: http://svn.digium.com/view/asterisk/trunk/build_tools/get_moduleinfo?view=diff&rev=139915&r1=139914&r2=139915
==============================================================================
--- trunk/build_tools/get_moduleinfo (original)
+++ trunk/build_tools/get_moduleinfo Mon Aug 25 16:32:10 2008
@@ -1,3 +1,3 @@
 /\/\*\*\* MODULEINFO/ {printit=1; next}
 /\*\*\*\// {if (printit) exit}
-// {if (printit) print}
+/.*/ {if (printit) print}




More information about the svn-commits mailing list