summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Angermann <moritz.angermann@gmail.com>2021-03-25 21:16:25 +0800
committerMoritz Angermann <moritz.angermann@gmail.com>2021-03-25 21:16:25 +0800
commit81df172290929ccf1694d5ef3aa4c171e8b291c8 (patch)
tree1f996936166761fd2291ed21b7b0281dbb397140
parent8a8bb7eda5b1f0be5ac95dd3af7a3430e0212f80 (diff)
downloadhaskell-81df172290929ccf1694d5ef3aa4c171e8b291c8.tar.gz
[hadrian] fix superfluous record wildcard
-rw-r--r--hadrian/src/Rules/Library.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/src/Rules/Library.hs b/hadrian/src/Rules/Library.hs
index 5d87f2eb46..307c0cacfb 100644
--- a/hadrian/src/Rules/Library.hs
+++ b/hadrian/src/Rules/Library.hs
@@ -141,7 +141,7 @@ extraObjects context
-- | Return all the object files to be put into the library we're building for
-- the given 'Context'.
libraryObjects :: Context -> Action [FilePath]
-libraryObjects context@Context{..} = do
+libraryObjects context = do
hsObjs <- hsObjects context
noHsObjs <- nonHsObjects context
need $ noHsObjs ++ hsObjs