diff options
author | Ian Lynagh <igloo@earth.li> | 2009-12-01 19:05:44 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-12-01 19:05:44 +0000 |
commit | 86876c30e19d9b2c699bdff44f5156b9afe6adcf (patch) | |
tree | 8bc2a6e253be4c37e56fe7c815416aaa7bc25d76 /mk | |
parent | a8cbb796233e44509cba2afde3081e844b7b6feb (diff) | |
download | haskell-86876c30e19d9b2c699bdff44f5156b9afe6adcf.tar.gz |
Use dlltool from the in-tree mingw installation
We only use dlltool on Windows, and this way we don't require that
the user has it installed.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 4431dd8055..07b0c79359 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -550,7 +550,7 @@ SRC_HSC2HS_OPTS += $(foreach d,$(GMP_INCLUDE_DIRS),-I$(d)) # Mingwex Library # HaveLibMingwEx = @HaveLibMingwEx@ -DLLTOOL = @DlltoolCmd@ +DLLTOOL = inplace/mingw/bin/dlltool.exe #----------------------------------------------------------------------------- # Flex (currently unused, could be moved to glafp-utils) |