diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2008-09-11 04:15:38 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2008-09-11 04:15:38 +0000 |
commit | cd4d273a5348488eb72f8074dc0e56173e628d01 (patch) | |
tree | 456811ba8efa2b6a431ed76216803aee51d4d14b /usr.sbin/pkg_add | |
parent | 9831767cbcd93023f3dd16d4ca22c1ec1d4b7b55 (diff) |
Do not clean ${PACKAGES} as this is the source files, if run without obj dir
present, it will delete the source files. Found by Steven Roberts.
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r-- | usr.sbin/pkg_add/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/Makefile b/usr.sbin/pkg_add/Makefile index c46093e501c..1767569f6d3 100644 --- a/usr.sbin/pkg_add/Makefile +++ b/usr.sbin/pkg_add/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.50 2008/09/02 04:19:46 drahn Exp $ +# $OpenBSD: Makefile,v 1.51 2008/09/11 04:15:37 drahn Exp $ .include <bsd.own.mk> @@ -116,7 +116,7 @@ stamp-mansrc.build: @cd ${.CURDIR} && exec ${MAKE} mansrc.build @touch $@ -CLEANFILES= ${PACKAGES} ${MANSRCALL} ${MANALL} stamp-mansrc.build +CLEANFILES= ${MANSRCALL} ${MANALL} stamp-mansrc.build realinstall: .for i in ${PACKAGEDIRS} |