diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-08-04 17:23:22 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-08-07 01:19:35 -0400 |
commit | 09bca1de6a336240f4aecfc7c43937dd811d5b22 (patch) | |
tree | 6e54b4abfccb15936159b5967264ddcc7fb2141b /distrib | |
parent | 1d63b4fb4d0757614ace880e25ed2c94e51b679c (diff) | |
download | haskell-09bca1de6a336240f4aecfc7c43937dd811d5b22.tar.gz |
hadrian: Fix binary distribution install attributes
Previously we would use plain `cp` to install various parts of the
binary distribution. However, `cp`'s behavior w.r.t. file attributes is
quite unclear; for this reason it is much better to rather use
`install`.
Fixes #21965.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/configure.ac.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/distrib/configure.ac.in b/distrib/configure.ac.in index a1fbf79a14..0ee9669a3c 100644 --- a/distrib/configure.ac.in +++ b/distrib/configure.ac.in @@ -79,6 +79,7 @@ AC_PATH_PROG(SedCmd,gsed sed,sed) dnl ** check for Python for testsuite driver FIND_PYTHON +FP_PROG_FIND XCODE_VERSION() |