From: Nicholas Clark Date: Thu, 18 Jun 2009 19:33:09 +0000 (+0100) Subject: Make expand-macro.pl scan config.h, if it exists. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ed690650a4d3639a6ac1ace13598aa3f1c99d7dc;p=p5sagit%2Fp5-mst-13.2.git Make expand-macro.pl scan config.h, if it exists. --- diff --git a/Porting/expand-macro.pl b/Porting/expand-macro.pl index 2cdaa79..34b76cb 100644 --- a/Porting/expand-macro.pl +++ b/Porting/expand-macro.pl @@ -32,6 +32,7 @@ if (!(@ARGV = @headers)) { while (<$fh>) { push @ARGV, $1 if m!^([^/]+\.h)\t!; } + push @ARGV, 'config.h' if -f 'config.h'; } my $header;