GUACAMOLE-1298: Avoid POSIX character classes for compatibility with mawk.
diff --git a/doc/licenses/generate-license-files.sh b/doc/licenses/generate-license-files.sh
index 6486f15..07ea3d8 100755
--- a/doc/licenses/generate-license-files.sh
+++ b/doc/licenses/generate-license-files.sh
@@ -260,8 +260,8 @@
     FILENAME="$1"
 
     # Find line number of first and last non-blank lines
-    FIRST_LINE="`awk '/[^[:space:]]/ {print NR; exit}' "$FILENAME"`"
-    LAST_LINE="`awk '/[^[:space:]]/ {last=NR} END {print last}' "$FILENAME"`"
+    FIRST_LINE="`awk '/[^\t ]/ {print NR; exit}' "$FILENAME"`"
+    LAST_LINE="`awk '/[^\t ]/ {last=NR} END {print last}' "$FILENAME"`"
 
     # Print the contents of the file between those lines, inclusive
     awk "NR==$FIRST_LINE,NR==$LAST_LINE" "$FILENAME"