diff options
author | Zubin Duggal <zubin.duggal@gmail.com> | 2021-12-13 18:03:14 +0530 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-01-11 19:37:45 -0500 |
commit | 02cf4bc6d349514d6740886ebed660a0c444f3d4 (patch) | |
tree | c5c709f408e279a212fece25617b6af4b76a599e /configure.ac | |
parent | a8fb4251cd4b12c792b0f94979b584364d80b434 (diff) | |
download | haskell-02cf4bc6d349514d6740886ebed660a0c444f3d4.tar.gz |
hadrian: Fully implement source distributions (#19317)
We use `git ls-files` to get the list of files to include in the source distribution.
Also implements the `-testsuite` and `-extra-tarballs` distributions.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a66c5c508a..a4694df27a 100644 --- a/configure.ac +++ b/configure.ac @@ -923,6 +923,7 @@ fi dnl ** check for xelatex AC_PATH_PROG(XELATEX,xelatex) AC_PATH_PROG(MAKEINDEX,makeindex) +AC_PATH_PROG(GIT,git) dnl ** check for makeinfo AC_PATH_PROG(MAKEINFO,makeinfo) @@ -1395,6 +1396,7 @@ echo "\ sphinx-build : $SPHINXBUILD xelatex : $XELATEX makeinfo : $MAKEINFO + git : $GIT Using LLVM tools clang : $ClangCmd |