X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/00366131b0706b5a4e901663d7d5cabbe7a27ebf..1200f988dcce17b10995afcf7b943fcbffa7a0c0:/tools/doxygen/xbt_log_extract_hierarchy.pl diff --git a/tools/doxygen/xbt_log_extract_hierarchy.pl b/tools/doxygen/xbt_log_extract_hierarchy.pl index 4de8b7f605..938d9535c1 100755 --- a/tools/doxygen/xbt_log_extract_hierarchy.pl +++ b/tools/doxygen/xbt_log_extract_hierarchy.pl @@ -1,4 +1,4 @@ -#! /usr/bin/perl +#!/usr/bin/perl use strict; use warnings; @@ -7,7 +7,7 @@ my $debug = 0; print "/* Generated file, do not edit */\n"; print "/** \\addtogroup XBT_log_cats\n"; -print ' @{'"\n"; +print " \@{\n"; # Search for calls to macros defining new channels, and prepare the tree representation my %ancestor; @@ -114,7 +114,7 @@ sub parse_file { } # Retrieve all the file names, and add their content to $data my $data; -open FILES, "find -name '*.c'|" || die "Cannot search for the source file names: $!\n"; +open FILES, "find src/ tools/ include/ -name '*.c'|" || die "Cannot search for the source file names: $!\n"; while (my $file=) { chomp $file; parse_file($file);