[asterisk-commits] seanbright: branch 1.4 r139909 - /branches/1.4/build_tools/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Aug 25 16:31:03 CDT 2008
Author: seanbright
Date: Mon Aug 25 16:31:03 2008
New Revision: 139909
URL: http://svn.digium.com/view/asterisk?view=rev&rev=139909
Log:
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:
branches/1.4/build_tools/get_makeopts
branches/1.4/build_tools/get_moduleinfo
Modified: branches/1.4/build_tools/get_makeopts
URL: http://svn.digium.com/view/asterisk/branches/1.4/build_tools/get_makeopts?view=diff&rev=139909&r1=139908&r2=139909
==============================================================================
--- branches/1.4/build_tools/get_makeopts (original)
+++ branches/1.4/build_tools/get_makeopts Mon Aug 25 16:31:03 2008
@@ -1,3 +1,3 @@
/\/\*\*\* MAKEOPTS/ {printit=1; next}
/\*\*\*\// {if (printit) exit}
-// {if (printit) print}
+/.*/ {if (printit) print}
Modified: branches/1.4/build_tools/get_moduleinfo
URL: http://svn.digium.com/view/asterisk/branches/1.4/build_tools/get_moduleinfo?view=diff&rev=139909&r1=139908&r2=139909
==============================================================================
--- branches/1.4/build_tools/get_moduleinfo (original)
+++ branches/1.4/build_tools/get_moduleinfo Mon Aug 25 16:31:03 2008
@@ -1,3 +1,3 @@
/\/\*\*\* MODULEINFO/ {printit=1; next}
/\*\*\*\// {if (printit) exit}
-// {if (printit) print}
+/.*/ {if (printit) print}
More information about the asterisk-commits
mailing list