diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-12-29 00:17:27 +0100 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-12-29 12:00:18 +0100 |
commit | 4ac708b0f6c29c22b6759ac546db8c9a289bd38d (patch) | |
tree | 759b28b46fcc9a2b5d30c3ee2dc2c81aa4d376e7 | |
parent | b32791d4bdfd910facdadb7a4451d07f2d6b2f88 (diff) | |
download | cuirass-4ac708b0f6c29c22b6759ac546db8c9a289bd38d.tar cuirass-4ac708b0f6c29c22b6759ac546db8c9a289bd38d.tar.gz |
build: Do not require "build-aux/guix.scm".
When building Cuirass with 'guix build -f build-aux/guix.scm' we don't want to
add "build-aux/guix.scm" in the repository snapshot since it is considered as
metadata. As a consequence we can't make 'autoconf' require it.
* configure.ac (AC_REQUIRE_AUX_FILE): Remove "build-aux/guix.scm".
* Makefile.am (EXTRA_DIST): Only distribute it.
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c5eebde..54c1092 100644 --- a/Makefile.am +++ b/Makefile.am @@ -103,6 +103,7 @@ EXTRA_DIST = \ bin/cuirass.in \ bin/evaluate.in \ bootstrap \ + build-aux/guix.scm \ src/cuirass/config.scm.in \ $(TESTS) diff --git a/configure.ac b/configure.ac index 8a2c729..0c3de2a 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,6 @@ AC_INIT([Cuirass], AC_CONFIG_SRCDIR([bin/cuirass.in]) AC_CONFIG_AUX_DIR([build-aux]) AC_REQUIRE_AUX_FILE([git-version-gen]) -AC_REQUIRE_AUX_FILE([guix.scm]) AC_REQUIRE_AUX_FILE([test-driver.scm]) AM_INIT_AUTOMAKE([foreign subdir-objects -Wall]) AM_SILENT_RULES([yes]) # enables silent rules by default |