diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2017-09-18 20:09:35 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2017-09-18 20:09:35 +0000 |
commit | 061f54d407412ec116f02cdfe309b086875e6ffb (patch) | |
tree | cdce41c4b8a4aa28544d6c7171de3377e83d6118 /distrib/hppa | |
parent | b28658b16815ad54796119d64a68febe28728fdc (diff) |
drop ${STRIP}, it's just 'strip'
ok deraadt@
Diffstat (limited to 'distrib/hppa')
-rw-r--r-- | distrib/hppa/ramdisk/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/distrib/hppa/ramdisk/Makefile b/distrib/hppa/ramdisk/Makefile index d4e4c1b2a1c..7d480871c0c 100644 --- a/distrib/hppa/ramdisk/Makefile +++ b/distrib/hppa/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.33 2017/08/12 19:41:16 jasper Exp $ +# $OpenBSD: Makefile,v 1.34 2017/09/18 20:09:34 jasper Exp $ CBIN= instbin ARCHDIR= ${.CURDIR}/.. @@ -24,7 +24,6 @@ MKBOOT?= /usr/mdec/mkboot BOOT?= ${DESTDIR}/usr/mdec/boot CDBOOT?= ${DESTDIR}/usr/mdec/cdboot -STRIP?= strip STRIPOPTS?= -R .SUNW_ctf GZIPCMD?= gzip GZIPFLAGS?= -9n @@ -57,7 +56,7 @@ obsd: bsd.rd: obsd ${IMAGE} rdsetroot cp obsd bsd.rd ${.OBJDIR}/rdsetroot bsd.rd ${IMAGE} - ${STRIP} ${STRIPOPTS} bsd.rd + strip ${STRIPOPTS} bsd.rd bsd: bsd.rd (cat bsd.rd ; dd if=/dev/zero count=1) | ${GZIPCMD} ${GZIPFLAGS} > bsd |