@@ -48,6 +48,7 @@ module Distribution.Simple.Build
48
48
49
49
-- * Handling of internal build tools
50
50
, addInternalBuildTools
51
+ , addInternalBuildToolsFixed
51
52
) where
52
53
53
54
import Distribution.Compat.Prelude
@@ -188,13 +189,15 @@ build_setupHooks
188
189
-- dumped.
189
190
dumpBuildInfo verbosity distPref (configDumpBuildInfo (configFlags lbi)) pkg_descr lbi flags
190
191
192
+ curDir <- absoluteWorkingDirLBI lbi
193
+
191
194
-- Now do the actual building
192
195
(\ f -> foldM_ f (installedPkgs lbi) componentsToBuild) $ \ index target -> do
193
196
let comp = targetComponent target
194
197
clbi = targetCLBI target
195
198
bi = componentBuildInfo comp
196
199
-- Include any build-tool-depends on build tools internal to the current package.
197
- progs' = addInternalBuildTools pkg_descr lbi bi (withPrograms lbi)
200
+ progs' = addInternalBuildToolsFixed ( Just curDir) pkg_descr lbi bi (withPrograms lbi)
198
201
lbi' =
199
202
lbi
200
203
{ withPrograms = progs'
@@ -376,17 +379,20 @@ repl_setupHooks
376
379
377
380
internalPackageDB <- createInternalPackageDB verbosity lbi distPref
378
381
379
- let lbiForComponent comp lbi' =
380
- lbi'
381
- { withPackageDB = withPackageDB lbi ++ [internalPackageDB]
382
- , withPrograms =
383
- -- Include any build-tool-depends on build tools internal to the current package.
384
- addInternalBuildTools
385
- pkg_descr
386
- lbi'
387
- (componentBuildInfo comp)
388
- (withPrograms lbi')
389
- }
382
+ let lbiForComponent comp lbi' = do
383
+ curDir <- absoluteWorkingDirLBI lbi'
384
+ return $
385
+ lbi'
386
+ { withPackageDB = withPackageDB lbi' ++ [internalPackageDB]
387
+ , withPrograms =
388
+ -- Include any build-tool-depends on build tools internal to the current package.
389
+ addInternalBuildToolsFixed
390
+ (Just curDir)
391
+ pkg_descr
392
+ lbi'
393
+ (componentBuildInfo comp)
394
+ (withPrograms lbi')
395
+ }
390
396
runPreBuildHooks :: LocalBuildInfo -> TargetInfo -> IO ()
391
397
runPreBuildHooks lbi2 tgt =
392
398
let inputs =
@@ -404,7 +410,7 @@ repl_setupHooks
404
410
[ do
405
411
let clbi = targetCLBI subtarget
406
412
comp = targetComponent subtarget
407
- lbi' = lbiForComponent comp lbi
413
+ lbi' <- lbiForComponent comp lbi
408
414
preBuildComponent runPreBuildHooks verbosity lbi' subtarget
409
415
buildComponent
410
416
(mempty {buildCommonFlags = mempty {setupVerbosity = toFlag verbosity}})
@@ -421,7 +427,7 @@ repl_setupHooks
421
427
-- REPL for target components
422
428
let clbi = targetCLBI target
423
429
comp = targetComponent target
424
- lbi' = lbiForComponent comp lbi
430
+ lbi' <- lbiForComponent comp lbi
425
431
preBuildComponent runPreBuildHooks verbosity lbi' target
426
432
replComponent flags verbosity pkg_descr lbi' suffixHandlers comp clbi distPref
427
433
@@ -925,13 +931,18 @@ createInternalPackageDB verbosity lbi distPref = do
925
931
-- directory environment variable for the current package to the current
926
932
-- 'progOverrideEnv', so that any programs configured from now on will be
927
933
-- able to invoke these build tools.
928
- addInternalBuildTools
929
- :: PackageDescription
934
+ --
935
+ -- NB: This function will be removed in the next Cabal major version
936
+ -- (use addInternalBuildTools instead). This function is introduced solely for
937
+ -- backporting in a PVP compliant way.
938
+ addInternalBuildToolsFixed
939
+ :: Maybe (AbsolutePath (Dir Pkg ))
940
+ -> PackageDescription
930
941
-> LocalBuildInfo
931
942
-> BuildInfo
932
943
-> ProgramDb
933
944
-> ProgramDb
934
- addInternalBuildTools pkg lbi bi progs =
945
+ addInternalBuildToolsFixed mpwd pkg lbi bi progs =
935
946
prependProgramSearchPathNoLogging
936
947
internalToolPaths
937
948
[pkgDataDirVar]
@@ -950,13 +961,27 @@ addInternalBuildTools pkg lbi bi progs =
950
961
buildDir lbi
951
962
</> makeRelativePathEx (toolName' </> toolName' <.> exeExtension (hostPlatform lbi))
952
963
]
953
- mbWorkDir = mbWorkDirLBI lbi
954
- rawDataDir = dataDir pkg
955
- dataDirPath
956
- | null $ getSymbolicPath rawDataDir =
957
- interpretSymbolicPath mbWorkDir sameDirectory
958
- | otherwise =
959
- interpretSymbolicPath mbWorkDir rawDataDir
964
+
965
+ dataDirPath :: FilePath
966
+ dataDirPath =
967
+ case mpwd of
968
+ -- This is an absolute path, so if a process changes directory, it can still
969
+ -- find the datadir (#10717)
970
+ Just pwd -> interpretSymbolicPathAbsolute pwd (dataDir pkg)
971
+ -- This is just wrong, but implemented for PVP compliance..
972
+ Nothing -> interpretSymbolicPathCWD (dataDir pkg)
973
+
974
+
975
+ {-# WARNING addInternalBuildTools "This function is broken, use addInternalBuildToolsFixed instead" #-}
976
+ -- | A backwards compatible (broken) version of `addInternalBuildTools`, do not
977
+ -- use this function. Use 'addInternalBuildToolsFixed' instead.
978
+ addInternalBuildTools
979
+ :: PackageDescription
980
+ -> LocalBuildInfo
981
+ -> BuildInfo
982
+ -> ProgramDb
983
+ -> ProgramDb
984
+ addInternalBuildTools = addInternalBuildToolsFixed Nothing
960
985
961
986
-- TODO: build separate libs in separate dirs so that we can build
962
987
-- multiple libs, e.g. for 'LibTest' library-style test suites
0 commit comments