aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2022-05-31 11:07:30 +0200
committerhjk <hjk@qt.io>2022-05-31 10:33:27 +0000
commit28027140f4f62803868b1b5d0033bd3952e653e9 (patch)
tree4de8b1e2e2cf47e5fa8c1280898deea978c5177e
parent110541d43253a6962a96360ccf2df0d1741ba9b7 (diff)
Adapt to upstream change
Change-Id: I5645005108dcba9e854112fadd59fa42b25e87b1 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--plugins/haskell/haskellrunconfiguration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/haskell/haskellrunconfiguration.cpp b/plugins/haskell/haskellrunconfiguration.cpp
index e82cf81..b52c658 100644
--- a/plugins/haskell/haskellrunconfiguration.cpp
+++ b/plugins/haskell/haskellrunconfiguration.cpp
@@ -61,7 +61,7 @@ HaskellRunConfiguration::HaskellRunConfiguration(Target *target, Utils::Id id)
addAspect<HaskellExecutableAspect>();
addAspect<ArgumentsAspect>(macroExpander());
- auto workingDirAspect = addAspect<WorkingDirectoryAspect>(envAspect);
+ auto workingDirAspect = addAspect<WorkingDirectoryAspect>(macroExpander(), envAspect);
workingDirAspect->setDefaultWorkingDirectory(target->project()->projectDirectory());
workingDirAspect->setVisible(false);