mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
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.
This commit is contained in:
parent
515cf34afd
commit
97c44d070c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36344
1 changed files with 4 additions and 4 deletions
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue