diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-11-06 19:37:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-11-06 19:37:07 +0000 |
commit | e38c2e05a42850ee4b196043b183ffa6c9ff20f9 (patch) | |
tree | 1a2778ef382d731b7866df0630632d1642e225c0 /sys/arch/mvme68k | |
parent | 02497881e213dda53b183e6b36aaa6a726852040 (diff) |
Don't cargo-cult copy the invocation of size(1) on compiled bootblocks,
when 1) they aren't in ELF format, and 2) the result does not EVEN REMOTELY
matter on these architectures.
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/stand/bootst/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/mvme68k/stand/bootst/Makefile b/sys/arch/mvme68k/stand/bootst/Makefile index 23572ade9ec..d22e4335be7 100644 --- a/sys/arch/mvme68k/stand/bootst/Makefile +++ b/sys/arch/mvme68k/stand/bootst/Makefile @@ -1,7 +1,6 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.15 2013/02/02 13:36:06 miod Exp $ +# $OpenBSD: Makefile,v 1.16 2013/11/06 19:37:06 miod Exp $ -SIZE?= size STRIP?= strip S= ${.CURDIR}/../../../.. @@ -33,7 +32,6 @@ all: ${ALL} bootst.bug: ${BUGCRT} ${OBJS} ${LIBS} ${LD} ${LDFLAGS} -o $@ \ ${BUGCRT} ${OBJS} ${LIBS} `${CC} -print-libgcc-file-name` - @${SIZE} bootst.bug bootst stboot: bootst.bug ${WRTVID} ${STRIP} -I a.out-m68k-netbsd -o bootst.strip bootst.bug |