diff options
author | pgj <pgj@FreeBSD.org> | 2016-02-20 04:50:24 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2016-02-20 04:50:24 +0800 |
commit | 79fa19165edbdaa66d98fc029e4b5028f195e637 (patch) | |
tree | f24a982fee36bda2c3140ee5c2e05299d7841433 /www/hs-activehs | |
parent | f7bd80ffd9224eea820f7543cc18adf0d0705689 (diff) | |
download | freebsd-ports-gnome-79fa19165edbdaa66d98fc029e4b5028f195e637.tar.gz freebsd-ports-gnome-79fa19165edbdaa66d98fc029e4b5028f195e637.tar.zst freebsd-ports-gnome-79fa19165edbdaa66d98fc029e4b5028f195e637.zip |
- Fix a run-time issue
Obtained from: FreeBSD Haskell
Diffstat (limited to 'www/hs-activehs')
-rw-r--r-- | www/hs-activehs/Makefile | 2 | ||||
-rw-r--r-- | www/hs-activehs/files/patch-Converter.hs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/www/hs-activehs/Makefile b/www/hs-activehs/Makefile index 1176f54b2ce5..010daff183c9 100644 --- a/www/hs-activehs/Makefile +++ b/www/hs-activehs/Makefile @@ -2,7 +2,7 @@ PORTNAME= activehs PORTVERSION= 0.3.1 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org diff --git a/www/hs-activehs/files/patch-Converter.hs b/www/hs-activehs/files/patch-Converter.hs index b0d545cc772e..3e23716431c6 100644 --- a/www/hs-activehs/files/patch-Converter.hs +++ b/www/hs-activehs/files/patch-Converter.hs @@ -18,12 +18,13 @@ showBlockSimple :: Language -> String -> String -> Int -> String -> [Block] -@@ -244,13 +244,13 @@ mkImport m d +@@ -244,13 +244,14 @@ mkImport m d , HSyn.importSrc = False , HSyn.importPkg = Nothing , HSyn.importAs = Nothing - , HSyn.importSpecs = Just (True, map (HSyn.IVar . mkName) d) + , HSyn.importSpecs = Just (True, map (HSyn.IVar HSyn.NoNamespace . mkName) d) ++ , HSyn.importSafe = False } mkName :: String -> HSyn.Name |