diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-01-03 17:55:01 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-01-03 17:55:01 +0000 |
commit | 545252f1c708964cf7f90181c033bcbde28507e4 (patch) | |
tree | b88b868e49bc1d914c80f0d034f7236904977e1d /app | |
parent | 1e78c8ec14072165d68a06031aaec7fb4c2d911a (diff) |
Avoid infinit loop on make clean. Problem found by mglocker@.
Diffstat (limited to 'app')
-rw-r--r-- | app/fvwm/icons/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/fvwm/icons/Makefile b/app/fvwm/icons/Makefile index b3be0cda6..5e8ecbcd3 100644 --- a/app/fvwm/icons/Makefile +++ b/app/fvwm/icons/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2007/03/30 17:24:12 aanriot Exp $ +# $OpenBSD: Makefile,v 1.5 2009/01/03 17:55:00 matthieu Exp $ .include "../Makefile.inc" @@ -64,6 +64,8 @@ install: ${DESTDIR}${INCSDIR}/X11/pixmaps ; \ done +clean: + cleandir: .include <bsd.own.mk> |