File: fix-make-shuffle.patch

package info (click to toggle)
groonga 15.2.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 171,276 kB
  • sloc: ansic: 772,258; cpp: 51,189; ruby: 40,538; javascript: 10,250; yacc: 7,045; sh: 5,622; python: 2,821; makefile: 1,677
file content (25 lines) | stat: -rw-r--r-- 817 bytes parent folder | download | duplicates (3)
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)