[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/09: build: Have the release target depend on 'all'.
From: |
guix-commits |
Subject: |
05/09: build: Have the release target depend on 'all'. |
Date: |
Fri, 30 Apr 2021 08:25:07 -0400 (EDT) |
apteryx pushed a commit to branch version-1.3.0
in repository guix.
commit 868113126c89ecb7f928c49de893122fa0fe272c
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Apr 27 09:36:39 2021 -0400
build: Have the release target depend on 'all'.
Otherwise, the scripts/guix wrapper may not be present, which would cause
the
user's guix wrapper to be used, which in turn would manipulate
GUILE_LOAD_PATH
in a way that would cause its Guix modules to take precedence over those of
the tree, with confusion ensuing.
* Makefile.am (release): Add 'all' as a prerequisite.
---
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index ab03dfa..8d059eb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -839,7 +839,7 @@ system_flags = $(foreach system,$(1),-s $(system))
#
# XXX: Depend on 'dist' rather than 'distcheck' to work around the Gettext
# issue described at <https://savannah.gnu.org/bugs/index.php?51027>.
-release: dist-with-updated-version
+release: dist-with-updated-version all
cd po; git checkout .
@if ! git diff-index --quiet HEAD; then \
echo "There are uncommitted changes; stopping." >&2 ; \
- branch version-1.3.0 updated (68110f7 -> 9bf205e), guix-commits, 2021/04/30
- 02/09: Makefile.am: Remove the GUIX_FOR_BINARY_TARBALL variable., guix-commits, 2021/04/30
- 05/09: build: Have the release target depend on 'all'.,
guix-commits <=
- 08/09: gnu: guix: Update to 1.3.0rc1., guix-commits, 2021/04/30
- 06/09: build: Build the guix.pot-update and contributing.pot-update targets only once., guix-commits, 2021/04/30
- 01/09: guix-install.sh: Ensure GUIX_BINARY_FILE_NAME is an absolute path., guix-commits, 2021/04/30
- 03/09: build: Update and add new comments for the release target., guix-commits, 2021/04/30
- 09/09: gnu: guix: Update to 6fd7f16., guix-commits, 2021/04/30
- 04/09: build: Add the qcow2 file extension to the VM image., guix-commits, 2021/04/30
- 07/09: build: Make doc-po-update and doc-pot-update targets idempotent., guix-commits, 2021/04/30