diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2006-06-11 21:01:38 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2006-06-11 21:01:38 +0000 |
commit | 37c755b9029d1666639fb8183438a0e6457d0b59 (patch) | |
tree | 66a01658fda740aee9e196e8cab2a651a08ca862 /app-emulation | |
parent | added BIG FAT WARNING (see bug #136170) (diff) | |
download | gentoo-2-37c755b9029d1666639fb8183438a0e6457d0b59.tar.gz gentoo-2-37c755b9029d1666639fb8183438a0e6457d0b59.tar.bz2 gentoo-2-37c755b9029d1666639fb8183438a0e6457d0b59.zip |
debugger fix, bug #121426
(Portage version: 2.1_rc4-r4)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/bochs/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/bochs/bochs-2.2.6.ebuild | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/app-emulation/bochs/ChangeLog b/app-emulation/bochs/ChangeLog index 9ccfad9f340c..abb80ea9da2d 100644 --- a/app-emulation/bochs/ChangeLog +++ b/app-emulation/bochs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/bochs # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/bochs/ChangeLog,v 1.55 2006/06/02 14:24:57 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/bochs/ChangeLog,v 1.56 2006/06/11 21:01:38 lu_zero Exp $ + + 11 Jun 2006; Luca Barbato <lu_zero@gentoo.org> bochs-2.2.6.ebuild: + add gdb stubs properly as suggested by Karl-Johan Karlsson + <creideiki+gentoo-bugzilla@lysator.liu.se> in bug #121426 *bochs-2.2.6 (02 Jun 2006) diff --git a/app-emulation/bochs/bochs-2.2.6.ebuild b/app-emulation/bochs/bochs-2.2.6.ebuild index 695a48e0f322..d087bfaf6e2d 100644 --- a/app-emulation/bochs/bochs-2.2.6.ebuild +++ b/app-emulation/bochs/bochs-2.2.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/bochs/bochs-2.2.6.ebuild,v 1.1 2006/06/02 14:24:57 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/bochs/bochs-2.2.6.ebuild,v 1.2 2006/06/11 21:01:38 lu_zero Exp $ inherit eutils wxwidgets @@ -67,8 +67,9 @@ src_compile() { myconf="${myconf} --without-wx" use debugger && \ myconf="$myconf --enable-debugger --enable-disasm \ - --enable-x86-debugger --enable-iodebug \ - --enable-gdb-stub" + --enable-x86-debugger --enable-iodebug" + use debugger || \ + myconf="$myconf --enable-gdb-stub" use vnc && \ myconf="$myconf --with-rfb" |