diff options
author | eivind <eivind@FreeBSD.org> | 1998-05-24 21:51:50 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-05-24 21:51:50 +0000 |
commit | 631316592f05d5ef85d9d819cb08570b9b8cd481 (patch) | |
tree | 603291d81cb9a53d440de8a5d9d875d191a3090b /gnu | |
parent | b376a65a134f72b4e664c9a7a7aa15a4478e9027 (diff) | |
download | FreeBSD-src-631316592f05d5ef85d9d819cb08570b9b8cd481.zip FreeBSD-src-631316592f05d5ef85d9d819cb08570b9b8cd481.tar.gz |
Don't blow away parts of the sourcetree on a 'make clean'. This was
only harmful for building from a read-only filesystem - the parts
blown away were old rm'ed directories.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libgmp/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/lib/libgmp/Makefile b/gnu/lib/libgmp/Makefile index 8a1ee85..0edaf2c 100644 --- a/gnu/lib/libgmp/Makefile +++ b/gnu/lib/libgmp/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.16 1998/03/12 13:03:05 bde Exp $ +# $Id: Makefile,v 1.17 1998/05/15 06:42:01 jb Exp $ # LIB= gmp @@ -128,9 +128,9 @@ CLEANFILES+= sysdep.h asm-syntax.h mpz mpf mpq: mkdir ${.TARGET} -CLEANDIRS+= ${.OBJDIR}/mpz ${.CURDIR}/mpz \ - ${.OBJDIR}/mpf ${.CURDIR}/mpf \ - ${.OBJDIR}/mpq ${.CURDIR}/mpq +CLEANDIRS+= ${.OBJDIR}/mpz \ + ${.OBJDIR}/mpf \ + ${.OBJDIR}/mpq beforeinstall: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ |