~ruther/guix-local

437e0729d86e750bed5ca76307e5dad610a337e6 — Ludovic Courtès 13 years ago d95c011
build: Pass the right flags for "make distcheck".

* Makefile.am (AM_DISTCHECK_CONFIGURE_FLAGS): New variable.
* configure.ac: Define and substitute `NIX_PREFIX'.
2 files changed, 7 insertions(+), 1 deletions(-)

M Makefile.am
M configure.ac
M Makefile.am => Makefile.am +2 -0
@@ 95,3 95,5 @@ $(guix_install_go_files): install-nobase_dist_guilemoduleDATA
SUBDIRS = po

ACLOCAL_AMFLAGS = -I m4
AM_DISTCHECK_CONFIGURE_FLAGS =					\
  --with-nixpkgs=$(NIXPKGS) --with-nix-prefix="$(NIX_PREFIX)"

M configure.ac => configure.ac +5 -1
@@ 27,7 27,11 @@ AC_ARG_WITH([nix-prefix],
  [AS_HELP_STRING([--with-nix-prefix=DIR], [search for Nix in DIR])],
  [case "$withval" in
    yes|no) ;;
    *)      PATH="$withval/bin:$PATH"; export PATH;;
    *)
      NIX_PREFIX="$withval"
      PATH="$NIX_PREFIX/bin:$PATH"; export PATH
      AC_SUBST([NIX_PREFIX])
      ;;
   esac],
  [])