unbreak previous patch for nhc98 2008-05-28
authorMalcolm.Wallace@cs.york.ac.uk <unknown>
Wed, 20 Feb 2008 10:24:53 +0000 (10:24 +0000)
committerMalcolm.Wallace@cs.york.ac.uk <unknown>
Wed, 20 Feb 2008 10:24:53 +0000 (10:24 +0000)
System/Directory.hs

index d705c0d..d1cf495 100644 (file)
@@ -1028,9 +1028,13 @@ getTemporaryDirectory = do
      peekCString pPath
 #else
   getEnv "TMPDIR"
+#if !__NHC__
     `catch` \ex -> case ex of
                      IOException e | isDoesNotExistError e -> return "/tmp"
                      _ -> throw ex
+#else
+    `catch` (\ex -> return "/tmp")
+#endif
 #endif
 
 #if defined(mingw32_HOST_OS)