yesod-bin 1.4.13.3 → 1.4.14
raw patch · 3 files changed
+6/−2 lines, 3 files
Files
- ChangeLog.md +4/−0
- GhcBuild.hs +1/−1
- yesod-bin.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.4.14++* Fix order of -package-db arguments to runghc [#1057](https://github.com/yesodweb/yesod/issues/1057)+ ## 1.4.13 * Enable stack with yesod keter [#1041](https://github.com/yesodweb/yesod/pull/1041)
GhcBuild.hs view
@@ -88,7 +88,7 @@ hideAll | gopt DF.Opt_HideAllPackages dflags1 = [ "-hide-all-packages"] | otherwise = [] ownPkg = packageString (DF.thisPackage dflags1)- return (extra dflags1 ++ hideAll ++ pkgFlags ++ [ownPkg])+ return (reverse (extra dflags1) ++ hideAll ++ pkgFlags ++ [ownPkg]) where #if __GLASGOW_HASKELL__ >= 710 convertPkgFlag (DF.ExposePackage (DF.PackageArg p) _) = "-package" ++ p
yesod-bin.cabal view
@@ -1,5 +1,5 @@ name: yesod-bin-version: 1.4.13.3+version: 1.4.14 license: MIT license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>