aboutsummaryrefslogtreecommitdiffstats
path: root/build_tools
diff options
context:
space:
mode:
authortzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-28 20:50:52 +0000
committertzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-28 20:50:52 +0000
commitd8834050f4aa2cdbabbf5330a73153b827723614 (patch)
tree325e802107ee93738cf2015d8b16c336e63c85e7 /build_tools
parent05ab7615b654bcd3052a5f83fe7f27bdd653c3c7 (diff)
remove empty awk pattern (//)
Solaris 10 nawk doesn't lthe empty pattern ike '//' for 'always'. Just remove that. No pattern at all always matches. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@226453 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}