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/luna88k/ramdisk | |
parent | 275fba9dba62885a583f81f63b4f21d0d93dcdff (diff) |
rm is in /bin, no need to specify
Diffstat (limited to 'distrib/luna88k/ramdisk')
-rw-r--r-- | distrib/luna88k/ramdisk/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/luna88k/ramdisk/Makefile b/distrib/luna88k/ramdisk/Makefile index 13b9cccbe66..2b6b9d66b5e 100644 --- a/distrib/luna88k/ramdisk/Makefile +++ b/distrib/luna88k/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.25 2019/04/30 17:46:04 deraadt Exp $ +# $OpenBSD: Makefile,v 1.26 2019/04/30 21:14:59 deraadt Exp $ FS= miniroot${OSrev}.fs FSSIZE= 8192 @@ -72,8 +72,8 @@ install: .endif clean cleandir: - /bin/rm -f *.core mr.fs instbin instbin.conf instbin.mk instbin.cache \ + rm -f *.core mr.fs instbin instbin.conf instbin.mk instbin.cache \ lib*.a lib*.olist instbin.map *.o *.lo *.c bsd bsd.rd - /bin/rm -rf mr.fs.d + rm -rf mr.fs.d .include <bsd.obj.mk> |