aboutsummaryrefslogtreecommitdiffstats
path: root/build_tools/get_makeopts
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-25 21:31:03 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-25 21:31:03 +0000
commita890f7de306251915e4011f69d30e4da0be7d9b8 (patch)
tree007b63c37b45e6253dadcbcee0f8d58a0b9397e1 /build_tools/get_makeopts
parent70e0619a1a114fbc459ea50aaeab55d0ddee0fee (diff)
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 git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@139909 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'build_tools/get_makeopts')
-rw-r--r--build_tools/get_makeopts2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_tools/get_makeopts b/build_tools/get_makeopts
index e63622afd..e4cc782b4 100644
--- a/build_tools/get_makeopts
+++ b/build_tools/get_makeopts
@@ -1,3 +1,3 @@
/\/\*\*\* MAKEOPTS/ {printit=1; next}
/\*\*\*\// {if (printit) exit}
-// {if (printit) print}
+/.*/ {if (printit) print}