diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-12-09 19:22:08 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-12-09 22:18:47 +0100 |
commit | cd48eae560c76f93cec6cf3db7c8cd788b929a69 (patch) | |
tree | 8630465ef867f96bd3c30957a31d70254aa57d05 /config-daemon.ac | |
parent | 6b6a0b143d487befb115bcbcb54de862c508f4f6 (diff) | |
download | patches-cd48eae560c76f93cec6cf3db7c8cd788b929a69.tar patches-cd48eae560c76f93cec6cf3db7c8cd788b929a69.tar.gz |
build: Always check for gzip/bzip2/xz.
This allows (guix config) to contain valid values of %GZIP et al. even
when configured with --disable-daemon.
* config-daemon.ac: Move 'AC_PATH_PROG' invocations for
gzip & co. to...
* configure.ac: ... here.
Diffstat (limited to 'config-daemon.ac')
-rw-r--r-- | config-daemon.ac | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/config-daemon.ac b/config-daemon.ac index 8c1c776133..c74ec94d31 100644 --- a/config-daemon.ac +++ b/config-daemon.ac @@ -14,14 +14,6 @@ if test "x$guix_build_daemon" = "xyes"; then AC_PROG_RANLIB AC_CONFIG_HEADER([nix/config.h]) - dnl Decompressors, for use by the substituter. - AC_PATH_PROG([GZIP], [gzip]) - AC_PATH_PROG([BZIP2], [bzip2]) - AC_PATH_PROG([XZ], [xz]) - AC_SUBST([GZIP]) - AC_SUBST([BZIP2]) - AC_SUBST([XZ]) - dnl Use 64-bit file system calls so that we can support files > 2 GiB. AC_SYS_LARGEFILE |