diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+1.7.0
+-----
+* Respect the '--relative' option for Root_Dir field
+
 1.6.0
 -----
 * Support Cabal 3.14
diff --git a/cabal-cargs.cabal b/cabal-cargs.cabal
--- a/cabal-cargs.cabal
+++ b/cabal-cargs.cabal
@@ -1,6 +1,6 @@
 cabal-version:      >=1.10.0
 name:               cabal-cargs
-version:            1.6.0
+version:            1.7.0
 license:            BSD3
 license-file:       LICENSE
 maintainer:         daniel.trstenjak@gmail.com
diff --git a/lib/CabalCargs/CompilerArgs.hs b/lib/CabalCargs/CompilerArgs.hs
--- a/lib/CabalCargs/CompilerArgs.hs
+++ b/lib/CabalCargs/CompilerArgs.hs
@@ -15,7 +15,7 @@
 import Data.List (nub, foldl')
 import Data.Maybe (maybeToList, listToMaybe)
 import Control.Lens
-import System.FilePath (takeDirectory)
+import System.FilePath (takeDirectory, pathSeparator)
 import qualified Filesystem.Path.CurrentOS as FP
 
 #if __GLASGOW_HASKELL__ < 710
@@ -92,6 +92,7 @@
                  & autogenHsSourceDirsL     %~ map stripCabalDir
                  & autogenIncludeDirsL      %~ map stripCabalDir
                  & packageDBL . _Just       %~ stripCabalDir
+                 & rootDirL . _Just         .~ ("." ++ [pathSeparator])
                  & hdevtoolsSocketL . _Just %~ stripCabalDir
 
          | otherwise
diff --git a/tests/Main.hs b/tests/Main.hs
--- a/tests/Main.hs
+++ b/tests/Main.hs
@@ -27,7 +27,7 @@
 testsWithBaseDir :: FilePath -> T.TestTree
 testsWithBaseDir dir = T.testGroup dir
    [ test dir "FindCabalFile" $ defaultArgs { sourceFile = libDir }
-   , test dir "FromCabalFile" $ defaultArgs { cabalFile = cabalFile } 
+   , test dir "FromCabalFile" $ defaultArgs { cabalFile = cabalFile }
    , test dir "FromLibSrcFile" $ defaultArgs { sourceFile = libSrcFile }
    , test dir "FromExeSrcFile" $ defaultArgs { sourceFile = exeSrcFile }
 
@@ -81,7 +81,7 @@
                  hPutStrLn stderr ("cabal-cargs: " ++ error)
 
               Right cargs_ -> do
-                 writeFile outputFile (intercalate " " $ Fmt.format formatting cargs_)
+                 writeFile outputFile $ (intercalate " " $ Fmt.format formatting cargs_) ++ "\n"
 
       diff ref new = ["diff", "-u", ref, new]
       goldenFile   = "tests" </> "goldenFiles" </> dir </> testName <.> "txt"
diff --git a/tests/goldenFiles/withSandbox/AllOfExe.txt b/tests/goldenFiles/withSandbox/AllOfExe.txt
--- a/tests/goldenFiles/withSandbox/AllOfExe.txt
+++ b/tests/goldenFiles/withSandbox/AllOfExe.txt
diff --git a/tests/goldenFiles/withSandbox/AllOfLib.txt b/tests/goldenFiles/withSandbox/AllOfLib.txt
--- a/tests/goldenFiles/withSandbox/AllOfLib.txt
+++ b/tests/goldenFiles/withSandbox/AllOfLib.txt
diff --git a/tests/goldenFiles/withSandbox/AllOfTest.txt b/tests/goldenFiles/withSandbox/AllOfTest.txt
--- a/tests/goldenFiles/withSandbox/AllOfTest.txt
+++ b/tests/goldenFiles/withSandbox/AllOfTest.txt
diff --git a/tests/goldenFiles/withSandbox/AllSections.txt b/tests/goldenFiles/withSandbox/AllSections.txt
--- a/tests/goldenFiles/withSandbox/AllSections.txt
+++ b/tests/goldenFiles/withSandbox/AllSections.txt
diff --git a/tests/goldenFiles/withSandbox/DisableFlag.txt b/tests/goldenFiles/withSandbox/DisableFlag.txt
--- a/tests/goldenFiles/withSandbox/DisableFlag.txt
+++ b/tests/goldenFiles/withSandbox/DisableFlag.txt
diff --git a/tests/goldenFiles/withSandbox/EnableAndDisableFlag.txt b/tests/goldenFiles/withSandbox/EnableAndDisableFlag.txt
--- a/tests/goldenFiles/withSandbox/EnableAndDisableFlag.txt
+++ b/tests/goldenFiles/withSandbox/EnableAndDisableFlag.txt
diff --git a/tests/goldenFiles/withSandbox/EnableFlag.txt b/tests/goldenFiles/withSandbox/EnableFlag.txt
--- a/tests/goldenFiles/withSandbox/EnableFlag.txt
+++ b/tests/goldenFiles/withSandbox/EnableFlag.txt
diff --git a/tests/goldenFiles/withSandbox/FindCabalFile.txt b/tests/goldenFiles/withSandbox/FindCabalFile.txt
--- a/tests/goldenFiles/withSandbox/FindCabalFile.txt
+++ b/tests/goldenFiles/withSandbox/FindCabalFile.txt
diff --git a/tests/goldenFiles/withSandbox/FindCabalFileHdevtools.txt b/tests/goldenFiles/withSandbox/FindCabalFileHdevtools.txt
--- a/tests/goldenFiles/withSandbox/FindCabalFileHdevtools.txt
+++ b/tests/goldenFiles/withSandbox/FindCabalFileHdevtools.txt
diff --git a/tests/goldenFiles/withSandbox/FindCabalFilePure.txt b/tests/goldenFiles/withSandbox/FindCabalFilePure.txt
--- a/tests/goldenFiles/withSandbox/FindCabalFilePure.txt
+++ b/tests/goldenFiles/withSandbox/FindCabalFilePure.txt
@@ -1,1 +1,1 @@
-lib exe tests -W -DLIB -DEXE base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal cabal-cargs tasty tasty-golden filepath .cabal-sandbox/x86_64-linux-ghc-7.6.2-packages.conf.d /home/dan/projekte/cabal-cargs/tests/inputFiles/withSandbox dist/dist-sandbox-6d1acfa0/build/autogen dist/dist-sandbox-6d1acfa0/build/autogen cabal_macros.h .hdevtools.sock
+lib exe tests -W -DLIB -DEXE base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal cabal-cargs tasty tasty-golden filepath .cabal-sandbox/x86_64-linux-ghc-7.6.2-packages.conf.d ./ dist/dist-sandbox-6d1acfa0/build/autogen dist/dist-sandbox-6d1acfa0/build/autogen cabal_macros.h .hdevtools.sock
diff --git a/tests/goldenFiles/withSandbox/FromCabalFile.txt b/tests/goldenFiles/withSandbox/FromCabalFile.txt
--- a/tests/goldenFiles/withSandbox/FromCabalFile.txt
+++ b/tests/goldenFiles/withSandbox/FromCabalFile.txt
diff --git a/tests/goldenFiles/withSandbox/FromCabalFileHdevtools.txt b/tests/goldenFiles/withSandbox/FromCabalFileHdevtools.txt
--- a/tests/goldenFiles/withSandbox/FromCabalFileHdevtools.txt
+++ b/tests/goldenFiles/withSandbox/FromCabalFileHdevtools.txt
diff --git a/tests/goldenFiles/withSandbox/FromCabalFilePure.txt b/tests/goldenFiles/withSandbox/FromCabalFilePure.txt
--- a/tests/goldenFiles/withSandbox/FromCabalFilePure.txt
+++ b/tests/goldenFiles/withSandbox/FromCabalFilePure.txt
@@ -1,1 +1,1 @@
-lib exe tests -W -DLIB -DEXE base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal cabal-cargs tasty tasty-golden filepath .cabal-sandbox/x86_64-linux-ghc-7.6.2-packages.conf.d /home/dan/projekte/cabal-cargs/tests/inputFiles/withSandbox dist/dist-sandbox-6d1acfa0/build/autogen dist/dist-sandbox-6d1acfa0/build/autogen cabal_macros.h .hdevtools.sock
+lib exe tests -W -DLIB -DEXE base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal cabal-cargs tasty tasty-golden filepath .cabal-sandbox/x86_64-linux-ghc-7.6.2-packages.conf.d ./ dist/dist-sandbox-6d1acfa0/build/autogen dist/dist-sandbox-6d1acfa0/build/autogen cabal_macros.h .hdevtools.sock
diff --git a/tests/goldenFiles/withSandbox/FromExeSrcFile.txt b/tests/goldenFiles/withSandbox/FromExeSrcFile.txt
--- a/tests/goldenFiles/withSandbox/FromExeSrcFile.txt
+++ b/tests/goldenFiles/withSandbox/FromExeSrcFile.txt
diff --git a/tests/goldenFiles/withSandbox/FromExeSrcFileHdevtools.txt b/tests/goldenFiles/withSandbox/FromExeSrcFileHdevtools.txt
--- a/tests/goldenFiles/withSandbox/FromExeSrcFileHdevtools.txt
+++ b/tests/goldenFiles/withSandbox/FromExeSrcFileHdevtools.txt
diff --git a/tests/goldenFiles/withSandbox/FromExeSrcFilePure.txt b/tests/goldenFiles/withSandbox/FromExeSrcFilePure.txt
--- a/tests/goldenFiles/withSandbox/FromExeSrcFilePure.txt
+++ b/tests/goldenFiles/withSandbox/FromExeSrcFilePure.txt
@@ -1,1 +1,1 @@
-exe -W -DEXE base cabal-cargs .cabal-sandbox/x86_64-linux-ghc-7.6.2-packages.conf.d /home/dan/projekte/cabal-cargs/tests/inputFiles/withSandbox dist/dist-sandbox-6d1acfa0/build/autogen dist/dist-sandbox-6d1acfa0/build/autogen cabal_macros.h .hdevtools.sock
+exe -W -DEXE base cabal-cargs .cabal-sandbox/x86_64-linux-ghc-7.6.2-packages.conf.d ./ dist/dist-sandbox-6d1acfa0/build/autogen dist/dist-sandbox-6d1acfa0/build/autogen cabal_macros.h .hdevtools.sock
diff --git a/tests/goldenFiles/withSandbox/FromExeSrcPure.txt b/tests/goldenFiles/withSandbox/FromExeSrcPure.txt
--- a/tests/goldenFiles/withSandbox/FromExeSrcPure.txt
+++ b/tests/goldenFiles/withSandbox/FromExeSrcPure.txt
diff --git a/tests/goldenFiles/withSandbox/FromLibSrcFile.txt b/tests/goldenFiles/withSandbox/FromLibSrcFile.txt
--- a/tests/goldenFiles/withSandbox/FromLibSrcFile.txt
+++ b/tests/goldenFiles/withSandbox/FromLibSrcFile.txt
diff --git a/tests/goldenFiles/withSandbox/FromLibSrcFileHdevtools.txt b/tests/goldenFiles/withSandbox/FromLibSrcFileHdevtools.txt
--- a/tests/goldenFiles/withSandbox/FromLibSrcFileHdevtools.txt
+++ b/tests/goldenFiles/withSandbox/FromLibSrcFileHdevtools.txt
diff --git a/tests/goldenFiles/withSandbox/FromLibSrcPure.txt b/tests/goldenFiles/withSandbox/FromLibSrcPure.txt
--- a/tests/goldenFiles/withSandbox/FromLibSrcPure.txt
+++ b/tests/goldenFiles/withSandbox/FromLibSrcPure.txt
@@ -1,1 +1,1 @@
-lib -W -DLIB base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal .cabal-sandbox/x86_64-linux-ghc-7.6.2-packages.conf.d /home/dan/projekte/cabal-cargs/tests/inputFiles/withSandbox dist/dist-sandbox-6d1acfa0/build/autogen dist/dist-sandbox-6d1acfa0/build/autogen cabal_macros.h .hdevtools.sock
+lib -W -DLIB base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal .cabal-sandbox/x86_64-linux-ghc-7.6.2-packages.conf.d ./ dist/dist-sandbox-6d1acfa0/build/autogen dist/dist-sandbox-6d1acfa0/build/autogen cabal_macros.h .hdevtools.sock
diff --git a/tests/goldenFiles/withSandbox/IgnoreBuildDepends.txt b/tests/goldenFiles/withSandbox/IgnoreBuildDepends.txt
--- a/tests/goldenFiles/withSandbox/IgnoreBuildDepends.txt
+++ b/tests/goldenFiles/withSandbox/IgnoreBuildDepends.txt
diff --git a/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfExe.txt b/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfExe.txt
--- a/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfExe.txt
+++ b/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfExe.txt
diff --git a/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfLib.txt b/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfLib.txt
--- a/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfLib.txt
+++ b/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfLib.txt
diff --git a/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfTest.txt b/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfTest.txt
--- a/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfTest.txt
+++ b/tests/goldenFiles/withSandbox/OnlyGhcOptionsOfTest.txt
diff --git a/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfExe.txt b/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfExe.txt
--- a/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfExe.txt
+++ b/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfExe.txt
diff --git a/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfLib.txt b/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfLib.txt
--- a/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfLib.txt
+++ b/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfLib.txt
diff --git a/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfTest.txt b/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfTest.txt
--- a/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfTest.txt
+++ b/tests/goldenFiles/withSandbox/OnlyPureSrcDirsOfTest.txt
diff --git a/tests/goldenFiles/withoutSandbox/AllOfExe.txt b/tests/goldenFiles/withoutSandbox/AllOfExe.txt
--- a/tests/goldenFiles/withoutSandbox/AllOfExe.txt
+++ b/tests/goldenFiles/withoutSandbox/AllOfExe.txt
diff --git a/tests/goldenFiles/withoutSandbox/AllOfLib.txt b/tests/goldenFiles/withoutSandbox/AllOfLib.txt
--- a/tests/goldenFiles/withoutSandbox/AllOfLib.txt
+++ b/tests/goldenFiles/withoutSandbox/AllOfLib.txt
diff --git a/tests/goldenFiles/withoutSandbox/AllOfTest.txt b/tests/goldenFiles/withoutSandbox/AllOfTest.txt
--- a/tests/goldenFiles/withoutSandbox/AllOfTest.txt
+++ b/tests/goldenFiles/withoutSandbox/AllOfTest.txt
diff --git a/tests/goldenFiles/withoutSandbox/AllSections.txt b/tests/goldenFiles/withoutSandbox/AllSections.txt
--- a/tests/goldenFiles/withoutSandbox/AllSections.txt
+++ b/tests/goldenFiles/withoutSandbox/AllSections.txt
diff --git a/tests/goldenFiles/withoutSandbox/DisableFlag.txt b/tests/goldenFiles/withoutSandbox/DisableFlag.txt
--- a/tests/goldenFiles/withoutSandbox/DisableFlag.txt
+++ b/tests/goldenFiles/withoutSandbox/DisableFlag.txt
diff --git a/tests/goldenFiles/withoutSandbox/EnableAndDisableFlag.txt b/tests/goldenFiles/withoutSandbox/EnableAndDisableFlag.txt
--- a/tests/goldenFiles/withoutSandbox/EnableAndDisableFlag.txt
+++ b/tests/goldenFiles/withoutSandbox/EnableAndDisableFlag.txt
diff --git a/tests/goldenFiles/withoutSandbox/EnableFlag.txt b/tests/goldenFiles/withoutSandbox/EnableFlag.txt
--- a/tests/goldenFiles/withoutSandbox/EnableFlag.txt
+++ b/tests/goldenFiles/withoutSandbox/EnableFlag.txt
diff --git a/tests/goldenFiles/withoutSandbox/FindCabalFile.txt b/tests/goldenFiles/withoutSandbox/FindCabalFile.txt
--- a/tests/goldenFiles/withoutSandbox/FindCabalFile.txt
+++ b/tests/goldenFiles/withoutSandbox/FindCabalFile.txt
diff --git a/tests/goldenFiles/withoutSandbox/FindCabalFileHdevtools.txt b/tests/goldenFiles/withoutSandbox/FindCabalFileHdevtools.txt
--- a/tests/goldenFiles/withoutSandbox/FindCabalFileHdevtools.txt
+++ b/tests/goldenFiles/withoutSandbox/FindCabalFileHdevtools.txt
diff --git a/tests/goldenFiles/withoutSandbox/FindCabalFilePure.txt b/tests/goldenFiles/withoutSandbox/FindCabalFilePure.txt
--- a/tests/goldenFiles/withoutSandbox/FindCabalFilePure.txt
+++ b/tests/goldenFiles/withoutSandbox/FindCabalFilePure.txt
@@ -1,1 +1,1 @@
-lib exe tests -W -DLIB -DEXE base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal cabal-cargs tasty tasty-golden filepath /home/dan/projekte/cabal-cargs/tests/inputFiles/withoutSandbox dist/build/autogen dist/build/autogen cabal_macros.h .hdevtools.sock
+lib exe tests -W -DLIB -DEXE base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal cabal-cargs tasty tasty-golden filepath ./ dist/build/autogen dist/build/autogen cabal_macros.h .hdevtools.sock
diff --git a/tests/goldenFiles/withoutSandbox/FromCabalFile.txt b/tests/goldenFiles/withoutSandbox/FromCabalFile.txt
--- a/tests/goldenFiles/withoutSandbox/FromCabalFile.txt
+++ b/tests/goldenFiles/withoutSandbox/FromCabalFile.txt
diff --git a/tests/goldenFiles/withoutSandbox/FromCabalFileHdevtools.txt b/tests/goldenFiles/withoutSandbox/FromCabalFileHdevtools.txt
--- a/tests/goldenFiles/withoutSandbox/FromCabalFileHdevtools.txt
+++ b/tests/goldenFiles/withoutSandbox/FromCabalFileHdevtools.txt
diff --git a/tests/goldenFiles/withoutSandbox/FromCabalFilePure.txt b/tests/goldenFiles/withoutSandbox/FromCabalFilePure.txt
--- a/tests/goldenFiles/withoutSandbox/FromCabalFilePure.txt
+++ b/tests/goldenFiles/withoutSandbox/FromCabalFilePure.txt
@@ -1,1 +1,1 @@
-lib exe tests -W -DLIB -DEXE base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal cabal-cargs tasty tasty-golden filepath /home/dan/projekte/cabal-cargs/tests/inputFiles/withoutSandbox dist/build/autogen dist/build/autogen cabal_macros.h .hdevtools.sock
+lib exe tests -W -DLIB -DEXE base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal cabal-cargs tasty tasty-golden filepath ./ dist/build/autogen dist/build/autogen cabal_macros.h .hdevtools.sock
diff --git a/tests/goldenFiles/withoutSandbox/FromExeSrcFile.txt b/tests/goldenFiles/withoutSandbox/FromExeSrcFile.txt
--- a/tests/goldenFiles/withoutSandbox/FromExeSrcFile.txt
+++ b/tests/goldenFiles/withoutSandbox/FromExeSrcFile.txt
diff --git a/tests/goldenFiles/withoutSandbox/FromExeSrcFileHdevtools.txt b/tests/goldenFiles/withoutSandbox/FromExeSrcFileHdevtools.txt
--- a/tests/goldenFiles/withoutSandbox/FromExeSrcFileHdevtools.txt
+++ b/tests/goldenFiles/withoutSandbox/FromExeSrcFileHdevtools.txt
diff --git a/tests/goldenFiles/withoutSandbox/FromExeSrcFilePure.txt b/tests/goldenFiles/withoutSandbox/FromExeSrcFilePure.txt
--- a/tests/goldenFiles/withoutSandbox/FromExeSrcFilePure.txt
+++ b/tests/goldenFiles/withoutSandbox/FromExeSrcFilePure.txt
@@ -1,1 +1,1 @@
-exe -W -DEXE base cabal-cargs /home/dan/projekte/cabal-cargs/tests/inputFiles/withoutSandbox dist/build/autogen dist/build/autogen cabal_macros.h .hdevtools.sock
+exe -W -DEXE base cabal-cargs ./ dist/build/autogen dist/build/autogen cabal_macros.h .hdevtools.sock
diff --git a/tests/goldenFiles/withoutSandbox/FromExeSrcPure.txt b/tests/goldenFiles/withoutSandbox/FromExeSrcPure.txt
--- a/tests/goldenFiles/withoutSandbox/FromExeSrcPure.txt
+++ b/tests/goldenFiles/withoutSandbox/FromExeSrcPure.txt
diff --git a/tests/goldenFiles/withoutSandbox/FromLibSrcFile.txt b/tests/goldenFiles/withoutSandbox/FromLibSrcFile.txt
--- a/tests/goldenFiles/withoutSandbox/FromLibSrcFile.txt
+++ b/tests/goldenFiles/withoutSandbox/FromLibSrcFile.txt
diff --git a/tests/goldenFiles/withoutSandbox/FromLibSrcFileHdevtools.txt b/tests/goldenFiles/withoutSandbox/FromLibSrcFileHdevtools.txt
--- a/tests/goldenFiles/withoutSandbox/FromLibSrcFileHdevtools.txt
+++ b/tests/goldenFiles/withoutSandbox/FromLibSrcFileHdevtools.txt
diff --git a/tests/goldenFiles/withoutSandbox/FromLibSrcPure.txt b/tests/goldenFiles/withoutSandbox/FromLibSrcPure.txt
--- a/tests/goldenFiles/withoutSandbox/FromLibSrcPure.txt
+++ b/tests/goldenFiles/withoutSandbox/FromLibSrcPure.txt
@@ -1,1 +1,1 @@
-lib -W -DLIB base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal /home/dan/projekte/cabal-cargs/tests/inputFiles/withoutSandbox dist/build/autogen dist/build/autogen cabal_macros.h .hdevtools.sock
+lib -W -DLIB base cmdargs lens directory strict transformers either text system-filepath system-fileio Cabal ./ dist/build/autogen dist/build/autogen cabal_macros.h .hdevtools.sock
diff --git a/tests/goldenFiles/withoutSandbox/IgnoreBuildDepends.txt b/tests/goldenFiles/withoutSandbox/IgnoreBuildDepends.txt
--- a/tests/goldenFiles/withoutSandbox/IgnoreBuildDepends.txt
+++ b/tests/goldenFiles/withoutSandbox/IgnoreBuildDepends.txt
diff --git a/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfExe.txt b/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfExe.txt
--- a/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfExe.txt
+++ b/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfExe.txt
diff --git a/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfLib.txt b/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfLib.txt
--- a/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfLib.txt
+++ b/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfLib.txt
diff --git a/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfTest.txt b/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfTest.txt
--- a/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfTest.txt
+++ b/tests/goldenFiles/withoutSandbox/OnlyGhcOptionsOfTest.txt
diff --git a/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfExe.txt b/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfExe.txt
--- a/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfExe.txt
+++ b/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfExe.txt
diff --git a/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfLib.txt b/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfLib.txt
--- a/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfLib.txt
+++ b/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfLib.txt
diff --git a/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfTest.txt b/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfTest.txt
--- a/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfTest.txt
+++ b/tests/goldenFiles/withoutSandbox/OnlyPureSrcDirsOfTest.txt
