Module Name: src Committed By: matt Date: Fri Feb 17 08:13:18 UTC 2012
Modified Files: src/usr.bin/ldd: Makefile.common Log Message: MIPS uses a variable page size now. (pulled up from matt-nb5-mips64) To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/usr.bin/ldd/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.bin/ldd/Makefile.common diff -u src/usr.bin/ldd/Makefile.common:1.1 src/usr.bin/ldd/Makefile.common:1.2 --- src/usr.bin/ldd/Makefile.common:1.1 Tue Jan 6 03:59:56 2009 +++ src/usr.bin/ldd/Makefile.common Fri Feb 17 08:13:18 2012 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1 2009/01/06 03:59:56 mrg Exp $ +# $NetBSD: Makefile.common,v 1.2 2012/02/17 08:13:18 matt Exp $ LDELFSO=${NETBSDSRCDIR}/libexec/ld.elf_so CPPFLAGS+= -I${LDELFSO} -DLIBDIR=\"${LIBDIR}\" @@ -8,6 +8,6 @@ CPPFLAGS+= -D_RTLD_SOURCE .if (${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "sparc64") || \ (${MACHINE_ARCH} == "arm") || (${MACHINE_ARCH} == "m68k") || \ - (${MACHINE_ARCH} == "powerpc") + (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH:Mmips*} != "") CPPFLAGS+= -DVARPSZ .endif