From c3418b96e7ecdb32d3237eba848d2a90ae86bdaf Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 14 Dec 2024 14:16:05 -0600 Subject: [PATCH] portage: Set USE=-nls globally A recent update to the Gentoo repo as introduced a circular dependency between _m4_ and _gettext_. We can avoid it by setting `USE=-nls`. This is OK because we don't need i18n in the build environment. --- portage/make.conf/60-nls.conf | 1 + 1 file changed, 1 insertion(+) create mode 100644 portage/make.conf/60-nls.conf diff --git a/portage/make.conf/60-nls.conf b/portage/make.conf/60-nls.conf new file mode 100644 index 0000000..ebc1f91 --- /dev/null +++ b/portage/make.conf/60-nls.conf @@ -0,0 +1 @@ +USE="${USE} -nls"