From 4a0abfdef52f540ba9943900635d3d8e8534e4f0 Mon Sep 17 00:00:00 2001 From: sit23 Date: Tue, 17 Apr 2018 16:13:05 +0100 Subject: [PATCH] Needed to add .finc to include file suffixes in mkmf. --- bin/mkmf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mkmf b/bin/mkmf index 792a4b35b..3f6965e8b 100755 --- a/bin/mkmf +++ b/bin/mkmf @@ -59,7 +59,7 @@ my @list; #some constants my $endline = $/; my @src_suffixes = ( q/\.F/, q/\.F90/, q/\.c/, q/\.f/, q/\.f90/ ); -my @inc_suffixes = ( q/\.H/, q/\.fh/, q/\.h/, q/\.inc/, q/\.h90/ ); +my @inc_suffixes = ( q/\.H/, q/\.fh/, q/\.h/, q/\.inc/, q/\.h90/, q/\.finc/ ); # push @inc_suffixes, @src_suffixes; # sourcefiles can be includefiles too: DISALLOW, 6 May 2004 # suffixes for the target (mkmf -p): if isn't on the list below it's a program my @tgt_suffixes = ( q/\.a/ );