aboutsummaryrefslogtreecommitdiffstats
path: root/build_tools
diff options
context:
space:
mode:
authortzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-28 21:32:28 +0000
committertzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-28 21:32:28 +0000
commit6dc887d1abb1448d18251f5b9ec248bf1ea7aa90 (patch)
treedc5ed1038924584d59d233736b2b10bb67d722ef /build_tools
parentaad4cc048059d9078aff5f141ddb64d24ca9a2c1 (diff)
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 git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@226486 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'build_tools')
-rw-r--r--build_tools/get_documentation2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_tools/get_documentation b/build_tools/get_documentation
index 7849c522a..3c0e4980a 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}