summaryrefslogtreecommitdiff
path: root/Porting/expand-macro.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-06-18 20:33:09 +0100
committerNicholas Clark <nick@ccl4.org>2009-06-18 20:33:09 +0100
commited690650a4d3639a6ac1ace13598aa3f1c99d7dc (patch)
tree5302f13d4be1422394ab14af529a136a2f24abe6 /Porting/expand-macro.pl
parent3b910a06633f63976a6da223b122193040fbe96d (diff)
downloadperl-ed690650a4d3639a6ac1ace13598aa3f1c99d7dc.tar.gz
Make expand-macro.pl scan config.h, if it exists.
Diffstat (limited to 'Porting/expand-macro.pl')
-rw-r--r--Porting/expand-macro.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/Porting/expand-macro.pl b/Porting/expand-macro.pl
index 2cdaa79727..34b76cb81f 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;