From cdfdd682142a6fb54d94dcda691750b2854c6ff3 Mon Sep 17 00:00:00 2001 From: E <79379754+oech3@users.noreply.github.com> Date: Sun, 9 Nov 2025 04:09:34 +0900 Subject: [PATCH] Merge pull request #9034 from oech3/locales-n GNUmakefile: fix LOCALES=n --- .github/workflows/CICD.yml | 4 ++-- GNUmakefile | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 99ae0a48a..25e60279f 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -303,11 +303,11 @@ jobs: run: make nextest CARGOFLAGS="--profile ci --hide-progress-bar" env: RUST_BACKTRACE: "1" - - name: "`make install COMPLETIONS=n MANPAGES=n`" + - name: "`make install COMPLETIONS=n MANPAGES=n LOCALES=n`" shell: bash run: | set -x - DESTDIR=/tmp/ make PROFILE=release COMPLETIONS=n MANPAGES=n install + DESTDIR=/tmp/ make PROFILE=release COMPLETIONS=n MANPAGES=n LOCALES=n install # Check that the utils are present test -f /tmp/usr/local/bin/tty # Check that the manpage is not present diff --git a/GNUmakefile b/GNUmakefile index 19f47db4e..3b5b2df0d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -469,6 +469,7 @@ install-locales: fi; \ done else +locales: install-locales: endif