diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-30 21:15:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-30 21:15:01 +0000 |
commit | 0f12bba78f77a96e40be5f828ab6d636a53ee25e (patch) | |
tree | 7728c0f9cc51529b78bf2f440fafe9849de8b494 /distrib/hppa | |
parent | 275fba9dba62885a583f81f63b4f21d0d93dcdff (diff) |
rm is in /bin, no need to specify
Diffstat (limited to 'distrib/hppa')
-rw-r--r-- | distrib/hppa/iso/Makefile | 4 | ||||
-rw-r--r-- | distrib/hppa/ramdisk/Makefile | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/distrib/hppa/iso/Makefile b/distrib/hppa/iso/Makefile index ca259892f34..c4263266f40 100644 --- a/distrib/hppa/iso/Makefile +++ b/distrib/hppa/iso/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2019/04/30 17:46:03 deraadt Exp $ +# $OpenBSD: Makefile,v 1.19 2019/04/30 21:14:59 deraadt Exp $ CDROM= install${OSrev}.iso RELXDIR?= /home/relx-${MACHINE} @@ -41,6 +41,6 @@ install: cp ${CDROM} ${RELDIR}/ clean cleandir: - /bin/rm -rf cd-dir ${CDROM} + rm -rf cd-dir ${CDROM} .include <bsd.obj.mk> diff --git a/distrib/hppa/ramdisk/Makefile b/distrib/hppa/ramdisk/Makefile index 91b62add9ef..64ee5ad9345 100644 --- a/distrib/hppa/ramdisk/Makefile +++ b/distrib/hppa/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.41 2019/04/30 17:46:03 deraadt Exp $ +# $OpenBSD: Makefile,v 1.42 2019/04/30 21:14:59 deraadt Exp $ CDROM= cd${OSrev}.iso LIF= lif${OSrev}.fs @@ -69,9 +69,9 @@ install: .endif clean cleandir: - /bin/rm -f *.core mr.fs instbin instbin.mk instbin.cache \ + rm -f *.core mr.fs instbin instbin.mk instbin.cache \ lib*.a lib*.olist instbin.map \ instbin.conf *.o *.lo *.c bsd bsd.* ${LIF} ${CDROM} - /bin/rm -rf mr.fs.d + rm -rf mr.fs.d .include <bsd.obj.mk> |