Module Name: src
Committed By: matt
Date: Wed Dec 16 19:00:48 UTC 2009
Modified Files:
src/sys/arch/sgimips/stand/boot: Makefile
Log Message:
Fix typo (missing -)
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/sgimips/stand/boot/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/sgimips/stand/boot/Makefile
diff -u src/sys/arch/sgimips/stand/boot/Makefile:1.15 src/sys/arch/sgimips/stand/boot/Makefile:1.16
--- src/sys/arch/sgimips/stand/boot/Makefile:1.15 Mon Dec 14 00:46:14 2009
+++ src/sys/arch/sgimips/stand/boot/Makefile Wed Dec 16 19:00:48 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2009/12/14 00:46:14 matt Exp $
+# $NetBSD: Makefile,v 1.16 2009/12/16 19:00:48 matt Exp $
# Don't strip the ECOFF'ed version on install -- strip gets confused by that,
@@ -13,7 +13,7 @@
${PROG}: ip2xboot ip3xboot
.if ${MACHINE_ARCH} == "mipseb"
${OBJCOPY} --impure -O ecoff-bigmips \
- -R .pdr -R .mdebug.nabi32 R .mdebug.abi32 \
+ -R .pdr -R .mdebug.nabi32 -R .mdebug.abi32 \
-R .comment -R .ident \
ip2xboot ${.TARGET}
.else