1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

build: Do not generate 'CODEOWNERS' when cross-compiling.

Fixes: guix/guix#812

* Makefile.am (CODEOWNERS): wrap it with in_git_p and !CROSS_COMPILING.

Change-Id: I65389947d3065d470739ca1a12398551be2178c1
This commit is contained in:
Zheng Junjie
2025-06-26 11:46:50 +08:00
parent aad58447fc
commit 10ffc93325

View File

@@ -1322,12 +1322,15 @@ download-po:
.PHONY: download-po
# Regenerate 'CODEOWNERS' when 'teams.scm' is modified so we don't forget.
if in_git_p
if !CROSS_COMPILING
CODEOWNERS: etc/teams.scm scripts/guix
./etc/teams.scm codeowners > "$@.tmp"
mv "$@.tmp" "$@"
BUILT_SOURCES += CODEOWNERS
endif
endif
## -------------- ##
## Silent rules. ##
## -------------- ##