summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2009-10-28 20:50:52 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2009-10-28 20:50:52 +0000
commit5bd895b24b0dcd95554d34522a478208d7a536b3 (patch)
tree325e802107ee93738cf2015d8b16c336e63c85e7
parent5524f0ab11df2ecfdfb678b8f4d0afafc36c8ea6 (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: https://origsvn.digium.com/svn/asterisk/trunk@226453 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-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}