diff options
author | fenner <fenner@FreeBSD.org> | 1999-05-05 23:23:20 +0800 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 1999-05-05 23:23:20 +0800 |
commit | d725f73c5f09be23894a5f9a87fc36bb59a90444 (patch) | |
tree | 818173f7809df65c125ec14165995999b6292f27 /java | |
parent | ddfa638bd2342a8d4555bebed0bc0923c3f10915 (diff) | |
download | freebsd-ports-gnome-d725f73c5f09be23894a5f9a87fc36bb59a90444.tar.gz freebsd-ports-gnome-d725f73c5f09be23894a5f9a87fc36bb59a90444.tar.zst freebsd-ports-gnome-d725f73c5f09be23894a5f9a87fc36bb59a90444.zip |
Allow the ${RM} in "pre-clean" to fail; otherwise you can't clean this
port unless you've already installed it.
Found by: "make clean" in /usr/ports
Diffstat (limited to 'java')
-rw-r--r-- | java/java-tutorial/Makefile | 4 | ||||
-rw-r--r-- | java/jdk-tutorial/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/java/java-tutorial/Makefile b/java/java-tutorial/Makefile index ab0872e548bd..6fbbcb0b68b3 100644 --- a/java/java-tutorial/Makefile +++ b/java/java-tutorial/Makefile @@ -3,7 +3,7 @@ # Date created: Tue Mar 23 10:18:20 EET 1999 # Whom: Martti Kuparinen <martti.kuparinen@ericsson.com> # -# $Id: Makefile,v 1.1.1.1 1999/04/30 18:16:01 taoka Exp $ +# $Id: Makefile,v 1.2 1999/05/05 15:00:01 taoka Exp $ # DISTNAME= tutorial @@ -29,6 +29,6 @@ post-install: @${CAT} ${PKGDIR}/MESSAGE pre-clean: - @${RM} -f ${PKGDIR}/MESSAGE + @-${RM} -f ${PKGDIR}/MESSAGE .include <bsd.port.mk> diff --git a/java/jdk-tutorial/Makefile b/java/jdk-tutorial/Makefile index ab0872e548bd..6fbbcb0b68b3 100644 --- a/java/jdk-tutorial/Makefile +++ b/java/jdk-tutorial/Makefile @@ -3,7 +3,7 @@ # Date created: Tue Mar 23 10:18:20 EET 1999 # Whom: Martti Kuparinen <martti.kuparinen@ericsson.com> # -# $Id: Makefile,v 1.1.1.1 1999/04/30 18:16:01 taoka Exp $ +# $Id: Makefile,v 1.2 1999/05/05 15:00:01 taoka Exp $ # DISTNAME= tutorial @@ -29,6 +29,6 @@ post-install: @${CAT} ${PKGDIR}/MESSAGE pre-clean: - @${RM} -f ${PKGDIR}/MESSAGE + @-${RM} -f ${PKGDIR}/MESSAGE .include <bsd.port.mk> |