Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/smuxi/files: smuxi-0.6.3-infinite-loop.patch
Date: Sun, 05 Apr 2009 21:20:03
Message-Id: E1LqZl3-0004ya-W3@stork.gentoo.org
1 loki_val 09/04/05 21:20:01
2
3 Added: smuxi-0.6.3-infinite-loop.patch
4 Log:
5 Fix bug 259434, smuxi enters an infinite loop when compiling on milli-second-precision FSes, suchs as tmpfs or XFS.
6 (Portage version: 2.2_rc28/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 net-irc/smuxi/files/smuxi-0.6.3-infinite-loop.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/smuxi/files/smuxi-0.6.3-infinite-loop.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/smuxi/files/smuxi-0.6.3-infinite-loop.patch?rev=1.1&content-type=text/plain
13
14 Index: smuxi-0.6.3-infinite-loop.patch
15 ===================================================================
16 From: Mirco Bauer <meebey@××××××.net>
17 Date: Sun, 5 Apr 2009 20:34:13 +0000 (+0200)
18 Subject: set subdir variable to "po" in all po-*/Makefile.in.in files
19 X-Git-Url: http://git.qnetp.net/?p=smuxi.git;a=commitdiff_plain;h=81669b0fcb404562d9d0da99d9605b3f64c07af2
20
21 set subdir variable to "po" in all po-*/Makefile.in.in files
22
23 This doesn't really make sense to me as that causes to always stamp the same file (po/stamp-it) instead of each po directory, but this is how intltoolize wants it.
24 At the same time this finally fixes the endless build loop if the source files are laying on xfs or tmpfs (which support more precise timestamps). (closes: #156)
25 ---
26
27 diff --git a/po-Engine-IRC/Makefile.in.in b/po-Engine-IRC/Makefile.in.in
28 index 27268fc..3add1c1 100644
29 --- a/po-Engine-IRC/Makefile.in.in
30 +++ b/po-Engine-IRC/Makefile.in.in
31 @@ -35,7 +35,7 @@ datarootdir = @datarootdir@
32 libdir = @libdir@
33 DATADIRNAME = @DATADIRNAME@
34 itlocaledir = $(prefix)/$(DATADIRNAME)/locale
35 -subdir = po-Engine-IRC
36 +subdir = po
37 install_sh = @install_sh@
38 # Automake >= 1.8 provides @mkdir_p@.
39 # Until it can be supposed, use the safe fallback:
40 diff --git a/po-Engine/Makefile.in.in b/po-Engine/Makefile.in.in
41 index b84aa3a..2ec381e 100644
42 --- a/po-Engine/Makefile.in.in
43 +++ b/po-Engine/Makefile.in.in
44 @@ -35,7 +35,7 @@ datarootdir = @datarootdir@
45 libdir = @libdir@
46 DATADIRNAME = @DATADIRNAME@
47 itlocaledir = $(prefix)/$(DATADIRNAME)/locale
48 -subdir = po-Engine
49 +subdir = po
50 install_sh = @install_sh@
51 # Automake >= 1.8 provides @mkdir_p@.
52 # Until it can be supposed, use the safe fallback:
53 diff --git a/po-Frontend-GNOME-IRC/Makefile.in.in b/po-Frontend-GNOME-IRC/Makefile.in.in
54 index 70d5713..5f70427 100644
55 --- a/po-Frontend-GNOME-IRC/Makefile.in.in
56 +++ b/po-Frontend-GNOME-IRC/Makefile.in.in
57 @@ -35,7 +35,7 @@ datarootdir = @datarootdir@
58 libdir = @libdir@
59 DATADIRNAME = @DATADIRNAME@
60 itlocaledir = $(prefix)/$(DATADIRNAME)/locale
61 -subdir = po-Frontend-GNOME-IRC
62 +subdir = po
63 install_sh = @install_sh@
64 # Automake >= 1.8 provides @mkdir_p@.
65 # Until it can be supposed, use the safe fallback:
66 diff --git a/po-Frontend-GNOME/Makefile.in.in b/po-Frontend-GNOME/Makefile.in.in
67 index 1e74fca..9567482 100644
68 --- a/po-Frontend-GNOME/Makefile.in.in
69 +++ b/po-Frontend-GNOME/Makefile.in.in
70 @@ -35,7 +35,7 @@ datarootdir = @datarootdir@
71 libdir = @libdir@
72 DATADIRNAME = @DATADIRNAME@
73 itlocaledir = $(prefix)/$(DATADIRNAME)/locale
74 -subdir = po-Frontend-GNOME
75 +subdir = po
76 install_sh = @install_sh@
77 # Automake >= 1.8 provides @mkdir_p@.
78 # Until it can be supposed, use the safe fallback:
79 diff --git a/po-Server/Makefile.in.in b/po-Server/Makefile.in.in
80 index 925fe32..edffc6e 100644
81 --- a/po-Server/Makefile.in.in
82 +++ b/po-Server/Makefile.in.in
83 @@ -35,7 +35,7 @@ datarootdir = @datarootdir@
84 libdir = @libdir@
85 DATADIRNAME = @DATADIRNAME@
86 itlocaledir = $(prefix)/$(DATADIRNAME)/locale
87 -subdir = po-Server
88 +subdir = po
89 install_sh = @install_sh@
90 # Automake >= 1.8 provides @mkdir_p@.
91 # Until it can be supposed, use the safe fallback: