diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-12-17 05:33:18 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-12-17 05:33:18 +0000 |
commit | 90ac5f7962017736d6590fc6e52b50920881edd0 (patch) | |
tree | 0fe8e0dcb9f4130fcf0cc00b6aefa1b53d8b1c8f | |
parent | 03b5f8c59529837db687d0ee47ec71f475734f17 (diff) | |
download | freebsd-ports-90ac5f7962017736d6590fc6e52b50920881edd0.zip |
Remove ${DISTNAME}.tar.gz in pre-clean target, it is built from the real
distfile in the do-extract target.
Found by: msmith's pib distfile checker
-rw-r--r-- | games/xemeraldia/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games/xemeraldia/Makefile b/games/xemeraldia/Makefile index af1dd949be86..7cb8006b50ca 100644 --- a/games/xemeraldia/Makefile +++ b/games/xemeraldia/Makefile @@ -3,7 +3,7 @@ # Date created: 22 Mar 1995 # Whom: asami # -# $Id: Makefile,v 1.9 1995/04/20 18:21:06 asami Exp $ +# $Id: Makefile,v 1.10 1996/11/18 11:25:25 asami Exp $ # DISTNAME= xemeraldia-0.3 @@ -30,4 +30,7 @@ post-install: touch ${PREFIX}/lib/X11/.xemeraldia.scores chmod 666 ${PREFIX}/lib/X11/.xemeraldia.scores +pre-clean: + @rm -f ${DISTDIR}/${DISTNAME}.tar.gz + .include <bsd.port.mk> |