Module Name: src
Committed By: mrg
Date: Wed Oct 12 03:57:45 UTC 2011
Modified Files:
src/external/gpl3/gdb/bin/gdb: Makefile
src/external/gpl3/gdb/bin/gdbtui: Makefile
Log Message:
fix the paths to libsim.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/gpl3/gdb/bin/gdb/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gdb/bin/gdbtui/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gdb/bin/gdb/Makefile
diff -u src/external/gpl3/gdb/bin/gdb/Makefile:1.3 src/external/gpl3/gdb/bin/gdb/Makefile:1.4
--- src/external/gpl3/gdb/bin/gdb/Makefile:1.3 Sun Oct 9 18:17:53 2011
+++ src/external/gpl3/gdb/bin/gdb/Makefile Wed Oct 12 03:57:45 2011
@@ -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 @@ DPADD+= ${LIBGDBDIR}/libgdb.a
# 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
Index: src/external/gpl3/gdb/bin/gdbtui/Makefile
diff -u src/external/gpl3/gdb/bin/gdbtui/Makefile:1.2 src/external/gpl3/gdb/bin/gdbtui/Makefile:1.3
--- src/external/gpl3/gdb/bin/gdbtui/Makefile:1.2 Sun Oct 2 18:15:23 2011
+++ src/external/gpl3/gdb/bin/gdbtui/Makefile Wed Oct 12 03:57:45 2011
@@ -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 @@ DPADD+= ${LIBGDBDIR}/libgdb.a
# 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