From 385258aeec532b05d56e79948e0317eb7c3a432a Mon Sep 17 00:00:00 2001 From: rnordier Date: Wed, 13 Dec 2000 17:10:38 +0000 Subject: Strip the .comment and .note sections when stripping. There's no point in retaining this info, particularly under BTX. --- sys/boot/i386/loader/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/boot/i386') diff --git a/sys/boot/i386/loader/Makefile b/sys/boot/i386/loader/Makefile index fa54f51..d034adc 100644 --- a/sys/boot/i386/loader/Makefile +++ b/sys/boot/i386/loader/Makefile @@ -91,7 +91,7 @@ ${BASE}: ${BASE}.bin ${BTXLDR} ${BTXKERN} ${BTXCRT} ${BASE}.help ${BASE}.bin: ${BASE}.sym cp ${.ALLSRC} ${.TARGET} - strip ${.TARGET} + strip -R .comment -R .note ${.TARGET} ${BASE}.help: help.common help.i386 cat ${.ALLSRC} | awk -f ${.CURDIR}/../../common/merge_help.awk > ${.TARGET} -- cgit v1.1