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/sparc64 | |
parent | 275fba9dba62885a583f81f63b4f21d0d93dcdff (diff) |
rm is in /bin, no need to specify
Diffstat (limited to 'distrib/sparc64')
-rw-r--r-- | distrib/sparc64/iso/Makefile | 4 | ||||
-rw-r--r-- | distrib/sparc64/miniroot/Makefile | 8 | ||||
-rw-r--r-- | distrib/sparc64/ramdisk/Makefile | 6 | ||||
-rw-r--r-- | distrib/sparc64/ramdiskB/Makefile | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/distrib/sparc64/iso/Makefile b/distrib/sparc64/iso/Makefile index b418f71dfbd..e8969f42587 100644 --- a/distrib/sparc64/iso/Makefile +++ b/distrib/sparc64/iso/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.20 2019/04/30 17:46:05 deraadt Exp $ +# $OpenBSD: Makefile,v 1.21 2019/04/30 21:15:00 deraadt Exp $ CDROM= install${OSrev}.iso RELXDIR?= /home/relx-${MACHINE} @@ -53,6 +53,6 @@ install: cp ${CDROM} ${RELDIR}/ clean cleandir: - /bin/rm -rf ${CDROM} ${.OBJDIR}/cd-dir + rm -rf ${CDROM} ${.OBJDIR}/cd-dir .include <bsd.obj.mk> diff --git a/distrib/sparc64/miniroot/Makefile b/distrib/sparc64/miniroot/Makefile index b4597014bd0..60886c56ec3 100644 --- a/distrib/sparc64/miniroot/Makefile +++ b/distrib/sparc64/miniroot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2019/04/30 19:20:24 deraadt Exp $ +# $OpenBSD: Makefile,v 1.15 2019/04/30 21:15:00 deraadt Exp $ FS= miniroot${OSrev}.fs FSSIZE= 5760 @@ -105,10 +105,10 @@ 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 \ *.o *.lo *.c bsd bsd.rd{,_unz} bsd.gz bsd.strip ${FS} - /bin/rm -rf mr.fs.d - /bin/rm -rf ${CDROM} ${.OBJDIR}/cd-dir + rm -rf mr.fs.d + rm -rf ${CDROM} ${.OBJDIR}/cd-dir .include <bsd.obj.mk> diff --git a/distrib/sparc64/ramdisk/Makefile b/distrib/sparc64/ramdisk/Makefile index fbfaa405c99..4be57d5aa0a 100644 --- a/distrib/sparc64/ramdisk/Makefile +++ b/distrib/sparc64/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.46 2019/04/30 17:46:06 deraadt Exp $ +# $OpenBSD: Makefile,v 1.47 2019/04/30 21:15:00 deraadt Exp $ FS= floppy${OSrev}.fs FSSIZE= 2880 @@ -77,9 +77,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 \ *.o *.lo *.c bsd bsd.rd bsd.gz ${FLOPPY} - /bin/rm -rf mr.fs.d + rm -rf mr.fs.d .include <bsd.obj.mk> diff --git a/distrib/sparc64/ramdiskB/Makefile b/distrib/sparc64/ramdiskB/Makefile index e0686642967..8cacf38eac3 100644 --- a/distrib/sparc64/ramdiskB/Makefile +++ b/distrib/sparc64/ramdiskB/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.40 2019/04/30 17:46:06 deraadt Exp $ +# $OpenBSD: Makefile,v 1.41 2019/04/30 21:15:00 deraadt Exp $ FS= floppyB${OSrev}.fs FSDISKTYPE= floppy @@ -75,9 +75,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 \ *.o *.lo *.c bsd bsd.rd bsd.gz ${FS} - /bin/rm -rf mr.fs.d + rm -rf mr.fs.d .include <bsd.obj.mk> |