diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-03 21:36:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-03 21:36:45 +0000 |
commit | 6f9a0ab79c62ad1cbb9d52a80370ac282f8caea0 (patch) | |
tree | a3338283db9d0d38d7f5ecc33cbb946d3d5744b9 | |
parent | e03202ad06549bc4cb11a3a601c2948870d3a3e7 (diff) |
size no longer has a.out knowledge, so .. skip it
found by tobiasu
-rw-r--r-- | sys/arch/sparc/stand/boot/Makefile | 3 | ||||
-rw-r--r-- | sys/arch/sparc/stand/bootxx/Makefile | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/sparc/stand/boot/Makefile b/sys/arch/sparc/stand/boot/Makefile index a19cd21085d..cf5f1d1031c 100644 --- a/sys/arch/sparc/stand/boot/Makefile +++ b/sys/arch/sparc/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.19 2012/09/02 23:23:51 pascal Exp $ +# $OpenBSD: Makefile,v 1.20 2013/11/03 21:36:43 deraadt Exp $ # $NetBSD: Makefile,v 1.2 1995/09/30 21:43:38 pk Exp $ PROG= boot @@ -32,7 +32,6 @@ ${PROG}: ${OBJS} ${LIBS} elfclean ./elfclean ${.TARGET}.elf objcopy -j .text -j .data -j .bss -O a.out-sparc-netbsd \ ${.TARGET}.elf ${.TARGET}.aout - @size ${.TARGET}.aout (echo -n 01 | tr 01 '\01\03'; tail +3c ${.TARGET}.aout) | \ dd obs=512 conv=osync > ${.TARGET} @rm ${.TARGET}.aout ${.TARGET}.elf diff --git a/sys/arch/sparc/stand/bootxx/Makefile b/sys/arch/sparc/stand/bootxx/Makefile index 0f94900feb6..63392cd5992 100644 --- a/sys/arch/sparc/stand/bootxx/Makefile +++ b/sys/arch/sparc/stand/bootxx/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2012/09/02 23:23:51 pascal Exp $ +# $OpenBSD: Makefile,v 1.12 2013/11/03 21:36:44 deraadt Exp $ # $NetBSD: Makefile,v 1.2 1995/09/30 21:43:38 pk Exp $ .PATH: ${.CURDIR}/../common @@ -33,7 +33,6 @@ ${PROG}: ${OBJS} elfclean ./elfclean ${.TARGET}.elf objcopy -j .text -j .data -j .bss -O a.out-sparc-netbsd \ ${.TARGET}.elf ${.TARGET}.aout - @size ${.TARGET}.aout (echo -n 01 | tr 01 '\01\03'; tail +3c ${.TARGET}.aout) > ${.TARGET} @rm ${.TARGET}.aout ${.TARGET}.elf |