summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-01-14 01:25:33 +0000
committerGerald Combs <gerald@wireshark.org>2012-01-14 01:25:33 +0000
commit5d542b79d5ddd60456f5d0a6c799b51d54a99581 (patch)
tree437a485f72ac9aff879a99d2dc81998017280f00
parentbc957229f87bff3567fafbe2718c1e138905ce9a (diff)
downloadwireshark-5d542b79d5ddd60456f5d0a6c799b51d54a99581.tar.gz
Add some debugging output to help track down an intermittent problem on
one of the buildbots. svn path=/trunk/; revision=40489
-rwxr-xr-xtools/runlex.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/runlex.sh b/tools/runlex.sh
index 15c8f18d63..f38759c9be 100755
--- a/tools/runlex.sh
+++ b/tools/runlex.sh
@@ -120,6 +120,8 @@ then
fi
fi
+echo "Wrote $outfile"
+
#
# OK, now let's generate a header file declaring the relevant functions
# defined by the .c file; if the .c file is .../foo.c, the header file
@@ -154,6 +156,8 @@ cat <<EOF >$header_file
$prefixline
#ifndef YY_DECL
#define YY_DECL int yylex(void)
-#endif
+#endif
YY_DECL;
EOF
+
+echo "Wrote $header_file"