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/amd64 | |
parent | 275fba9dba62885a583f81f63b4f21d0d93dcdff (diff) |
rm is in /bin, no need to specify
Diffstat (limited to 'distrib/amd64')
-rw-r--r-- | distrib/amd64/iso/Makefile | 4 | ||||
-rw-r--r-- | distrib/amd64/ramdiskA/Makefile | 6 | ||||
-rw-r--r-- | distrib/amd64/ramdisk_cd/Makefile | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/distrib/amd64/iso/Makefile b/distrib/amd64/iso/Makefile index f75dd614a4c..d5c3bf3839c 100644 --- a/distrib/amd64/iso/Makefile +++ b/distrib/amd64/iso/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.29 2019/04/30 17:46:03 deraadt Exp $ +# $OpenBSD: Makefile,v 1.30 2019/04/30 21:14:58 deraadt Exp $ FS= install${OSrev}.fs FSSIZE= 921536 @@ -91,7 +91,7 @@ install: cp ${CDROM} ${FS} ${RELDIR}/ clean cleandir: - /bin/rm -f ${CDROM} ${FS} + rm -f ${CDROM} ${FS} rm -rf cd-dir bsd.gz: bsd.rd diff --git a/distrib/amd64/ramdiskA/Makefile b/distrib/amd64/ramdiskA/Makefile index 490673d1ec7..142e0335324 100644 --- a/distrib/amd64/ramdiskA/Makefile +++ b/distrib/amd64/ramdiskA/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2019/04/30 17:46:03 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 2019/04/30 21:14:58 deraadt Exp $ FS= floppy${OSrev}.fs FSSIZE= 2880 @@ -79,9 +79,9 @@ install: .endif # RELEASEDIR clean cleandir: - /bin/rm -f *.core mr.fs instbin instbin.mk instbin*.cache \ + rm -f *.core mr.fs instbin instbin.mk instbin*.cache \ *.o *.lo *.c bsd bsd.rd bsd.gz bsd.strip floppy*.fs \ lib*.a lib*.olist instbin.map boot instbin.conf ${FS} - /bin/rm -rf mr.fs.d + rm -rf mr.fs.d .include <bsd.obj.mk> diff --git a/distrib/amd64/ramdisk_cd/Makefile b/distrib/amd64/ramdisk_cd/Makefile index 4738795075d..c5d8fd53d18 100644 --- a/distrib/amd64/ramdisk_cd/Makefile +++ b/distrib/amd64/ramdisk_cd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2019/04/30 20:38:30 deraadt Exp $ +# $OpenBSD: Makefile,v 1.15 2019/04/30 21:14:58 deraadt Exp $ FS= miniroot${OSrev}.fs FSSIZE= 9600 @@ -104,7 +104,7 @@ 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 \ *.o *.lo *.c bsd bsd.rd bsd.gz bsd.strip floppy*.fs \ lib*.a lib*.olist instbin.map boot instbin.conf ${FS} rm -rf mr.fs.d |