forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sys-fs/xfsdump: respect user $LINGUAS #561664
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
From e12813b9d0883e02cc121ea503f4bff5fb67e9ef Mon Sep 17 00:00:00 2001 | ||
From: Mike Frysinger <[email protected]> | ||
Date: Fri, 8 Apr 2016 16:41:31 -0400 | ||
Subject: [PATCH xfsdump] po: respect LINGUAS build setting | ||
|
||
It is common gettext practice to limit the translations a particular | ||
package will include by setting the LINGUAS environment variable. | ||
|
||
Signed-off-by: Mike Frysinger <[email protected]> | ||
--- | ||
po/Makefile | 5 ++++- | ||
1 file changed, 4 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/po/Makefile b/po/Makefile | ||
index 6d40324..48a19c1 100644 | ||
--- a/po/Makefile | ||
+++ b/po/Makefile | ||
@@ -6,7 +6,10 @@ TOPDIR = .. | ||
include $(TOPDIR)/include/builddefs | ||
|
||
POTHEAD = $(PKG_NAME).pot | ||
-LINGUAS = de pl | ||
+# If the user has requested a specific set of translations, only build those. | ||
+SUPPORTED_LINGUAS = $(patsubst %.po,%,$(wildcard *.po)) | ||
+LINGUAS ?= $(SUPPORTED_LINGUAS) | ||
+LINGUAS := $(filter $(SUPPORTED_LINGUAS),$(LINGUAS)) | ||
LSRCFILES = $(LINGUAS:%=%.po) | ||
LDIRT = $(POTHEAD) | ||
|
||
-- | ||
2.7.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters