diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-10-15 22:46:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-10-15 22:46:55 +0000 |
commit | a29a546ff171e90082ce7cd09900c6413c54e3ef (patch) | |
tree | aff5d06dbe5febe70beed263cebe6f2880afad51 /distrib/vax/common | |
parent | 91e290bb93770e2b39536a04f68b1a7cb4ddfbc1 (diff) |
We do not produce "core" files, so they do not need to be deleted. they
have been *.core files for a very long time. That's a lot of unlink()
calls saved.
Diffstat (limited to 'distrib/vax/common')
-rw-r--r-- | distrib/vax/common/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/vax/common/Makefile.inc b/distrib/vax/common/Makefile.inc index 9ccf0b7ac44..96ab814eac0 100644 --- a/distrib/vax/common/Makefile.inc +++ b/distrib/vax/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.8 2013/10/14 00:00:14 guenther Exp $ +# $OpenBSD: Makefile.inc,v 1.9 2013/10/15 22:46:54 deraadt Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -67,7 +67,7 @@ ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c ${MAKE} -f ${CBIN}.mk SRCLIBDIR=${.CURDIR}/../../../lib all clean cleandir: - /bin/rm -f core ${IMAGE} ${CBIN} ${CBIN}.mk ${CBIN}.cache \ + /bin/rm -f *.core ${IMAGE} ${CBIN} ${CBIN}.mk ${CBIN}.cache \ *.o *.lo *.c \ lib*.a lib*.olist ${CBIN}.map |