summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2004-09-16 14:34:11 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2004-09-16 14:34:11 +0000
commit63bc38a12c627d9442ab5da03d43246c8a80b9bc (patch)
treed49551b95d2f3ae4cec087d969a0feff1665d9be /gdb
parentf694c2af77074b8a247f8699a33f06e4aaf16a2f (diff)
Merge bk://openembedded@openembedded.bkbits.net/packages
into home.hrw.one.pl:/home/szczepan/zaurus/oe/packages 2004/09/16 16:19:39+02:00 mn-logistik.de!schurig Merge http://openembedded@openembedded.bkbits.net/packages into mnz66.mn-logistik.de:/usr/src/oe/packages 2004/09/16 16:19:22+02:00 mn-logistik.de!schurig re-added gdbserver re-fixed do_install stage in a cross-compile environment BKrev: 4149a4638OQNkGGCpfyWeT7U_oWClA
Diffstat (limited to 'gdb')
-rw-r--r--gdb/gdb_6.2.oe15
1 files changed, 6 insertions, 9 deletions
diff --git a/gdb/gdb_6.2.oe b/gdb/gdb_6.2.oe
index 5fba6ebbde..fa9ecaa7e5 100644
--- a/gdb/gdb_6.2.oe
+++ b/gdb/gdb_6.2.oe
@@ -5,6 +5,9 @@ PRIORITY = "optional"
MAINTAINER = "Pawel Osiczko <p.osiczko@tetrapyloctomy.org>"
DEPENDS = "ncurses readline"
+PACKAGES =+ 'gdbserver '
+FILES_gdbserver = '${bindir}/gdbserver'
+
inherit autotools
SRC_URI = "${GNU_MIRROR}/gdb/gdb-${PV}.tar.gz \
@@ -35,17 +38,11 @@ do_configure () {
}
do_install () {
+ make -C bfd/doc chew LDFLAGS= CFLAGS=-O2
oe_runmake install \
'prefix=${D}' 'exec_prefix=${D}' 'bindir=${D}/bin' \
'sbindir=${D}/sbin' 'infodir=${D}/share/info' 'libdir=${D}/lib' \
'mandir=${D}/share/man' 'includedir=${D}/include'
+ install -d ${D}${bindir}
+ install -m 0755 gdb/gdbserver/gdbserver ${D}${bindir}
}
-
-#
-# patch description
-#
-# readline.patch:
-# gdb 5.3 provides its own readline source which tends to conflict with
-# readline package. we override readline included from gdb source
-# with packaged readline and fix up extern tilde_expand in gdb/defs.h
-#