From 04700e18978e69097d7d850581c903feed0e81d0 Mon Sep 17 00:00:00 2001 From: sewardj Date: Fri, 29 Jun 2001 13:18:18 +0000 Subject: [PATCH] [project @ 2001-06-29 13:18:18 by sewardj] Test for __MINGW32__, not __MINGW__. --- ghc/utils/touchy/touchy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/utils/touchy/touchy.c b/ghc/utils/touchy/touchy.c index 71a58ba..90fb31e 100644 --- a/ghc/utils/touchy/touchy.c +++ b/ghc/utils/touchy/touchy.c @@ -3,7 +3,7 @@ * to the current system time. * */ -#if !defined(_MSC_VER) && !defined(__MINGW__) && !defined(_WIN32) +#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(_WIN32) #error "Win32-only, the platform you're using is supposed to have 'touch' already." #else #include -- 1.7.10.4