1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

* Purify all corepkgs builders.

This commit is contained in:
Eelco Dolstra 2005-03-15 12:03:15 +00:00
parent e52ae1c0ff
commit bacd3a6cfa
5 changed files with 17 additions and 15 deletions

View file

@ -81,6 +81,13 @@ AC_PATH_PROG(xsltproc, xsltproc, false)
AC_PATH_PROG(flex, flex, false)
AC_PATH_PROG(bison, bison, false)
NEED_PROG(perl, perl)
NEED_PROG(tar, tar)
AC_PATH_PROG(mkdir, mkdir, false)
AC_ARG_WITH(coreutils-bin, AC_HELP_STRING([--with-coreutils-bin=PATH],
[path of mkdir, etc.]),
coreutils=$withval, coreutils=$(dirname $mkdir))
AC_SUBST(coreutils)
AC_ARG_WITH(docbook-catalog, AC_HELP_STRING([--with-docbook-catalog=PATH],
[path of the DocBook XML DTD]),