Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/schroot/files: schroot-1.4.14-debug.patch
Date: Sun, 23 Jan 2011 20:18:27
Message-Id: 20110123201818.0E1F620057@flycatcher.gentoo.org
1 abcd 11/01/23 20:18:18
2
3 Added: schroot-1.4.14-debug.patch
4 Log:
5 Add patch to fix build with USE=debug. Debian bug 609067, Gentoo bug 344615
6
7 (Portage version: 2.2.0_alpha14_p1/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 dev-util/schroot/files/schroot-1.4.14-debug.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/files/schroot-1.4.14-debug.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/schroot/files/schroot-1.4.14-debug.patch?rev=1.1&content-type=text/plain
14
15 Index: schroot-1.4.14-debug.patch
16 ===================================================================
17 From 741833bdcba4b9aa7e389d389f42e4fa504d7cc7 Mon Sep 17 00:00:00 2001
18 From: Jonathan Callen <abcd@g.o>
19 Date: Wed, 5 Jan 2011 01:26:26 -0500
20 Subject: [PATCH] schroot-base: fix build with --enable-debug
21
22 Rename last instance of the variable sbuild::debug_level to
23 sbuild::debug_log_level. This appears to have been missed in commit
24 04c19bb6c28295a387e60066c48db7f443e5b925.
25 ---
26 bin/schroot-base/schroot-base-main.cc | 2 +-
27 1 files changed, 1 insertions(+), 1 deletions(-)
28
29 diff --git a/bin/schroot-base/schroot-base-main.cc b/bin/schroot-base/schroot-base-main.cc
30 index ac86018..d6cd0b0 100644
31 --- a/bin/schroot-base/schroot-base-main.cc
32 +++ b/bin/schroot-base/schroot-base-main.cc
33 @@ -106,7 +106,7 @@ main::run (int argc,
34 this->program_options->parse(argc, argv);
35
36 #ifdef SBUILD_DEBUG
37 - sbuild::debug_level = sbuild::DEBUG_CRITICAL;
38 + sbuild::debug_log_level = sbuild::DEBUG_CRITICAL;
39 #endif
40
41 if (this->use_syslog)
42 --
43 1.7.3.3