1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Kentaro Hayashi <kenhys@xdump.org>
Date: Sat, 31 May 2025 21:15:47 +0900
Subject: Fix FTBFS with make --shuffle=reverse
Description: FTBFS with make --shuffle=reverse because inappropriate
dependency to po files
Author: Kentaro Hayashi <kenhys@xdump.org>
Forwarded: not-needed
---
build/makefiles/gettext.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build/makefiles/gettext.am b/build/makefiles/gettext.am
index 035302c..f82113e 100644
--- a/build/makefiles/gettext.am
+++ b/build/makefiles/gettext.am
@@ -83,7 +83,7 @@ edit-po-build-stamp: pot-build-stamp
mo_build_stamp_dependencies = edit-po-build-stamp
if DOCUMENT_BUILDABLE
-mo_build_stamp_dependencies += $(edit_po_files)
+mo_build_stamp_dependencies += $(po_files)
endif
mo-build-stamp: $(mo_build_stamp_dependencies)
|