From a7470c2b358a21eef9f3c37a9a1dbaa7fe02bd64 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 3 Aug 2000 16:47:51 +0000 Subject: [PATCH] [project @ 2000-08-03 16:47:51 by simonmar] wibble --- ghc/driver/Main.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/driver/Main.hs b/ghc/driver/Main.hs index f85ada2..44b2b6a 100644 --- a/ghc/driver/Main.hs +++ b/ghc/driver/Main.hs @@ -1,6 +1,6 @@ {-# OPTIONS -W #-} ----------------------------------------------------------------------------- --- $Id: Main.hs,v 1.46 2000/08/03 13:43:00 simonmar Exp $ +-- $Id: Main.hs,v 1.47 2000/08/03 16:47:51 simonmar Exp $ -- -- GHC Driver program -- @@ -606,7 +606,7 @@ GLOBAL_VAR(library_paths, [], [String]) GLOBAL_VAR(cmdline_libraries, [], [String]) addToDirList :: IORef [String] -> String -> IO () -addToDirList ref paths +addToDirList ref path = do paths <- readIORef ref writeIORef ref (paths ++ split split_marker path) -- 1.7.10.4