Prevent haddock docs being built when HADDOCK_DOCS=NO
[ghc-hetmet.git] / utils / mkdependC / mkdependC.prl
index f7af53a..6f06b1c 100644 (file)
@@ -6,6 +6,9 @@
 #
 # ToDo: strip out all the .h junk
 #
+
+use File::Temp qw/ tempfile tempdir /;;
+
 ($Pgm = $0) =~ s/.*\/([^\/]+)$/\1/;
 $Usage  = "usage: $Pgm: not done yet\n";
 
@@ -122,6 +125,8 @@ sub mangle_command_line_args {
            push(@Defines, $2);
        } elsif ( /^(-optc)?(-I.*)/ ) {
            $Include_dirs .= " $2";
+       } elsif ( /^(-optc)?(-isystem.*)/ ) {
+           $Include_dirs .= " $2";
 
        } elsif ($Dashdashes_seen != 1) { # not between -- ... --
            if ( /^-v$/ ) {
@@ -176,8 +181,8 @@ sub slurp_file { # follows an example in the `open' item in perl man page
 
     $fname = &tidy_dir_names($fname);
 
-    ($tempfile = $fname) =~ s/\.[^\.]*$/\.d/;
-    $tempfile =~ s|.*/([^/]+)$|$1|g;
+    ($fh, $tempfile) = tempfile();
+    close $fh;
 
     # ${CPP} better be 'gcc -E', or the -x option will fail...
     # ..and the -MM & -MMD.