diff options
author | Sebastien Marie <semarie@cvs.openbsd.org> | 2021-02-13 18:39:41 +0000 |
---|---|---|
committer | Sebastien Marie <semarie@cvs.openbsd.org> | 2021-02-13 18:39:41 +0000 |
commit | 67c1785793947a6bc379181f4d506e8ef0cbaaf1 (patch) | |
tree | ed1cb9394b0fae406757ad3590fea1081004018e /distrib/alpha/miniroot | |
parent | 7eefd48f3c50cb2f130e678de7fc407dbac69c38 (diff) |
distrib: remove STRIPOPTS variable from alpha and sparc64 Makefile
ok deraadt@ danj@
Diffstat (limited to 'distrib/alpha/miniroot')
-rw-r--r-- | distrib/alpha/miniroot/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/distrib/alpha/miniroot/Makefile b/distrib/alpha/miniroot/Makefile index 67851a7456d..8e07205d47a 100644 --- a/distrib/alpha/miniroot/Makefile +++ b/distrib/alpha/miniroot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2021/01/05 15:10:40 deraadt Exp $ +# $OpenBSD: Makefile,v 1.19 2021/02/13 18:39:40 semarie Exp $ FS= miniroot${OSrev}.img FSSIZE= 5760 @@ -11,8 +11,6 @@ RAMDISK= RAMDISKBIG LISTS= ${.CURDIR}/list UTILS= ${.CURDIR}/../../miniroot -STRIPOPTS= -R .eh_frame -R .SUNW_ctf -R .shstrtab - MRDISKTYPE= rdroot MRMAKEFSARGS= -o disklabel=${MRDISKTYPE},minfree=0,density=8192 @@ -65,7 +63,7 @@ ${CDROM}: bsd.gz bsd.gz: bsd.rd objcopy -Sg -R .comment bsd.rd bsd.strip - strip ${STRIPOPTS} bsd.strip + strip -R .eh_frame -R .SUNW_ctf -R .shstrtab bsd.strip gzip -9cn bsd.strip > bsd.gz bsd.rd: mr.fs bsd @@ -93,7 +91,7 @@ instbin.mk instbin.cache instbin.c: instbin.conf instbin: instbin.mk instbin.cache instbin.c ${MAKE} -f instbin.mk SRCLIBDIR=${.CURDIR}/../../../lib all - strip ${STRIPOPTS} instbin + strip -R .eh_frame -R .SUNW_ctf -R .shstrtab instbin instbin.conf: ${LISTS} awk -f ${UTILS}/makeconf.awk ${LISTS} > instbin.conf |