summaryrefslogtreecommitdiff
path: root/gtkdoc-scan.in
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2011-04-05 09:58:51 +0300
committerStefan Kost <ensonic@users.sf.net>2011-04-05 09:58:51 +0300
commitf07b3d5a068efaa574564cce6c7f6c41c1d2e465 (patch)
tree374763fada4772bd6ed66df5502b0f2b848437aa /gtkdoc-scan.in
parent22ecc8ce9d5a739360c03772081991c180c58196 (diff)
downloadgtk-doc-f07b3d5a068efaa574564cce6c7f6c41c1d2e465.tar.gz
scan: add one more trace statement
Diffstat (limited to 'gtkdoc-scan.in')
-rwxr-xr-xgtkdoc-scan.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtkdoc-scan.in b/gtkdoc-scan.in
index 4304210..d9942d8 100755
--- a/gtkdoc-scan.in
+++ b/gtkdoc-scan.in
@@ -287,7 +287,10 @@ sub ScanHeader {
# Don't scan headers twice
my $canonical_input_file = realpath $input_file;
- return if exists $seen_headers{$canonical_input_file};
+ if (exists $seen_headers{$canonical_input_file}) {
+ @TRACE@("File already scanned: $input_file");
+ return;
+ }
$seen_headers{$canonical_input_file} = 1;
if ($input_file =~ m/^.*[\/\\](.*)\.h+$/) {