diff options
author | 2004-08-06 21:33:37 +0000 | |
---|---|---|
committer | 2004-08-06 21:33:37 +0000 | |
commit | 34a66f0f2af5657737323ca11f104ed84f756d43 (patch) | |
tree | ad6722e487a82e76ed8023d9895a27aa5753090f | |
parent | Makefile changes to enter deep down there (diff) | |
download | wireguard-openbsd-34a66f0f2af5657737323ca11f104ed84f756d43.tar.xz wireguard-openbsd-34a66f0f2af5657737323ca11f104ed84f756d43.zip |
do not be quiet about this operation
-rw-r--r-- | sys/arch/i386/stand/cdboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/cdboot/Makefile b/sys/arch/i386/stand/cdboot/Makefile index 3adc18677f7..3b9b05bb71d 100644 --- a/sys/arch/i386/stand/cdboot/Makefile +++ b/sys/arch/i386/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2004/06/23 00:21:49 tom Exp $ +# $OpenBSD: Makefile,v 1.2 2004/08/06 21:33:37 deraadt Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -27,7 +27,7 @@ DPADD= ${LIBSA} ${LIBZ} ${PROG}: $(OBJS) $(DPADD) $(LD) $(LDFLAGS) -o ${PROG} $(OBJS) $(LDADD) @$(SIZE) ${PROG} - @if [ -x ${.OBJDIR}/${PROG} ]; then \ + if [ -x ${.OBJDIR}/${PROG} ]; then \ objcopy -O binary ${PROG} ${.OBJDIR}/.tmp;\ mv -f ${.OBJDIR}/.tmp ${.OBJDIR}/${PROG}; \ ls -l ${.OBJDIR}/${PROG}; \ |