Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/gpl3/gdb/bin fix the paths to libsim.



details:   https://anonhg.NetBSD.org/src/rev/44f006f31bb0
branches:  trunk
changeset: 770318:44f006f31bb0
user:      mrg <mrg%NetBSD.org@localhost>
date:      Wed Oct 12 03:57:45 2011 +0000

description:
fix the paths to libsim.

diffstat:

 external/gpl3/gdb/bin/gdb/Makefile    |  6 +++---
 external/gpl3/gdb/bin/gdbtui/Makefile |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (46 lines):

diff -r fb415f98a569 -r 44f006f31bb0 external/gpl3/gdb/bin/gdb/Makefile
--- a/external/gpl3/gdb/bin/gdb/Makefile        Wed Oct 12 01:05:00 2011 +0000
+++ b/external/gpl3/gdb/bin/gdb/Makefile        Wed Oct 12 03:57:45 2011 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.3 2011/10/09 18:17:53 christos Exp $
+#      $NetBSD: Makefile,v 1.4 2011/10/12 03:57:45 mrg Exp $
 
 .include <bsd.own.mk>
 .include "../Makefile.inc"
@@ -57,11 +57,11 @@
 # Simulator support
 .if ${MACHINE_ARCH} == powerpc || ${MACHINE_ARCH} == powerpcle || \
     ${MACHINE_ARCH} == powerpc64
-SIMOBJ!=       cd ${.CURDIR}/../sim/ppc && ${PRINTOBJDIR}
+SIMOBJ!=       cd ${.CURDIR}/../../lib/libsim && ${PRINTOBJDIR}
 LDADD+=                -L${SIMOBJ} -lsim
 DPADD+=                ${SIMOBJ}/libsim.a
 .elif ${MACHINE_CPU} == xxmips
-SIMOBJ!=       cd ${.CURDIR}/../sim/mips && ${PRINTOBJDIR}
+SIMOBJ!=       cd ${.CURDIR}/../../lib/libsim && ${PRINTOBJDIR}
 LDADD+=                -L${SIMOBJ} -lsim
 DPADD+=                ${SIMOBJ}/libsim.a
 .endif
diff -r fb415f98a569 -r 44f006f31bb0 external/gpl3/gdb/bin/gdbtui/Makefile
--- a/external/gpl3/gdb/bin/gdbtui/Makefile     Wed Oct 12 01:05:00 2011 +0000
+++ b/external/gpl3/gdb/bin/gdbtui/Makefile     Wed Oct 12 03:57:45 2011 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.2 2011/10/02 18:15:23 christos Exp $
+#      $NetBSD: Makefile,v 1.3 2011/10/12 03:57:45 mrg Exp $
 
 .include "../Makefile.inc"
 
@@ -44,11 +44,11 @@
 # Simulator support
 .if ${MACHINE_ARCH} == powerpc || ${MACHINE_ARCH} == powerpcle || \
     ${MACHINE_ARCH} == powerpc64
-SIMOBJ!=       cd ${.CURDIR}/../sim/ppc && ${PRINTOBJDIR}
+SIMOBJ!=       cd ${.CURDIR}/../../lib/libsim && ${PRINTOBJDIR}
 LDADD+=                -L${SIMOBJ} -lsim
 DPADD+=                ${SIMOBJ}/libsim.a
 .elif ${MACHINE_CPU} == xxmips
-SIMOBJ!=       cd ${.CURDIR}/../sim/mips && ${PRINTOBJDIR}
+SIMOBJ!=       cd ${.CURDIR}/../../lib/libsim && ${PRINTOBJDIR}
 LDADD+=                -L${SIMOBJ} -lsim
 DPADD+=                ${SIMOBJ}/libsim.a
 .endif



Home | Main Index | Thread Index | Old Index