From e5dfcd65b1d6733d9140c0458335f5d0a57a10e4 Mon Sep 17 00:00:00 2001 From: rrt Date: Fri, 12 May 2000 11:55:52 +0000 Subject: [PATCH] [project @ 2000-05-12 11:55:52 by rrt] Remove reference to dLL_ifs.hi (was being specifically ignored in preprocess_include_dirs). --- ghc/utils/mkdependHS/mkdependHS.prl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ghc/utils/mkdependHS/mkdependHS.prl b/ghc/utils/mkdependHS/mkdependHS.prl index da0e0bc..93d08b3 100644 --- a/ghc/utils/mkdependHS/mkdependHS.prl +++ b/ghc/utils/mkdependHS/mkdependHS.prl @@ -376,11 +376,7 @@ sub preprocess_import_dirs { for ($_ = readdir(DIR); $_; $_ = readdir(DIR)) { next unless /(.*)\.hi$/; $thing = $1; - # - # dLL_ifs.hi is used to indicate whether a directory - # contains interface files whose object codes reside in a Win32 DLL. - # - if ($ModuleIn{$thing} && $ModuleIn{$thing} ne $d && $thing ne 'dLL_ifs') { + if ($ModuleIn{$thing} && $ModuleIn{$thing} ne $d) { print STDERR "$Pgm: warning: $thing.hi appears in both $ModuleIn{$thing} and $d!\n" if ($Warnings); } else { $ModuleIn{$thing} = $d; -- 1.7.10.4