diff options
author | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2006-08-04 22:24:36 +0000 |
---|---|---|
committer | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2006-08-04 22:24:36 +0000 |
commit | 1f95d6db898bc4c92ebb8a8e8f9920d5237bac61 (patch) | |
tree | 16f657f93635ad60b6ed405a1865e292692df199 /mk | |
parent | c76c69c5b62f1ca4fa52d75b0dfbd37b7eddbb09 (diff) | |
download | haskell-1f95d6db898bc4c92ebb8a8e8f9920d5237bac61.tar.gz |
Massive patch for the first months work adding System FC to GHC #36
Broken up massive patch -=chak
Original log message:
This is (sadly) all done in one patch to avoid Darcs bugs.
It's not complete work... more FC stuff to come. A compiler
using just this patch will fail dismally.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index dc69ff2116..806908bee9 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -461,10 +461,10 @@ NoFibRuns = 5 DEFAULT_TMPDIR = /tmp ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32" -DEFAULT_TMPDIR = C:/TEMP +DEFAULT_TMPDIR = /C/TEMP endif ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" -DEFAULT_TMPDIR = C:/TEMP +DEFAULT_TMPDIR = /C/TEMP endif # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path). @@ -489,7 +489,7 @@ mandir = @mandir@ ifeq "$(Windows)" "YES" ifeq "$(strip $(prefix))" "" -prefix = c:/ghc +prefix = /c/ghc endif # Hack: our directory layouts tend to be different on Windows, so |