[Pkg-haskell-commits] [SCM] haskell-testpack branch, master, updated. debian/1.0.2-1-4-gb0d6b36

John Goerzen jgoerzen at complete.org
Fri Apr 23 14:47:53 UTC 2010


The following commit has been merged in the master branch:
commit ce73596195be02cbe024687d375d0ca599ee6dae
Author: John Goerzen <jgoerzen at complete.org>
Date:   Fri Nov 19 21:37:12 2004 +0100

    Fixed Makefile to ignore installed version of library on hugs
    
    Keywords:
    
    
    (jgoerzen at complete.org--projects/missingh--head--0.5--patch-97)

diff --git a/ChangeLog b/ChangeLog
index b744936..6330009 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,18 @@
 # arch-tag: automatic-ChangeLog--jgoerzen at complete.org--projects/missingh--head--0.5
 #
 
+2004-11-19 14:37:12 GMT	John Goerzen <jgoerzen at complete.org>	patch-97
+
+    Summary:
+      Fixed Makefile to ignore installed version of library on hugs
+    Revision:
+      missingh--head--0.5--patch-97
+
+
+    modified files:
+     ChangeLog Makefile libsrc/MissingH/Parsec.hs
+
+
 2004-11-19 02:19:35 GMT	John Goerzen <jgoerzen at complete.org>	patch-96
 
     Summary:
diff --git a/Makefile b/Makefile
index e47c227..2ce757b 100644
--- a/Makefile
+++ b/Makefile
@@ -57,10 +57,10 @@ test-ghc6: testsrc/runtests
 	testsrc/runtests
 
 test-hugs:
-	runhugs -98 +o -P:$(PWD)/libsrc:$(PWD)/testsrc testsrc/runtests.hs
+	runhugs -98 +o -P$(PWD)/libsrc:$(PWD)/testsrc: testsrc/runtests.hs
 
 interact-hugs:
-	hugs -98 +o -P:$(PWD)/libsrc
+	hugs -98 +o -P$(PWD)/libsrc:
 
 interact-ghci: all
 	ghci -fallow-overlapping-instances -fallow-undecidable-instances -fglasgow-exts -ilibsrc
diff --git a/libsrc/MissingH/Parsec.hs b/libsrc/MissingH/Parsec.hs
index 64172de..e1e38b6 100644
--- a/libsrc/MissingH/Parsec.hs
+++ b/libsrc/MissingH/Parsec.hs
@@ -37,8 +37,8 @@ module MissingH.Parsec(-- * Generalized Utilities
                        togtok, tokeng, satisfyg, oneOfg, noneOfg,
                        specificg, allg,
                        -- * Other Utilities
-                       notMatching)
-where
+                       notMatching
+                      ) where
 
 import Text.ParserCombinators.Parsec
 

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list