mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 08:09:08 +00:00
Fixed beforeinstall rule. .CURDIR was spelled .SRCDIR.
Changed beforeinstall rule to use `install -C' instead of `cmp -s' and `install -c'. `install -C' has exactly the right semantics for installing headers and should be used elsewhere.
This commit is contained in:
parent
c2e6431816
commit
89e36521ab
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12486
@ -1,5 +1,5 @@
|
||||
# Makefile for libgmp
|
||||
# $Id: Makefile,v 1.1 1995/11/13 19:13:19 markm Exp $
|
||||
# $Id: Makefile,v 1.2 1995/11/25 00:14:03 peter Exp $
|
||||
|
||||
LIB= gmp
|
||||
SRCS= $(GMP_SRCS)
|
||||
@ -40,9 +40,8 @@ SUBDIR+= doc
|
||||
beforedepend: gmp-mparam.h mp_bases.c
|
||||
|
||||
beforeinstall:
|
||||
cmp -s ${.SRCDIR}/gmp.h ${DESTDIR}/usr/include/gmp.h || \
|
||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
||||
${.SRCDIR}/gmp.h ${DESTDIR}/usr/include/gmp.h
|
||||
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
|
||||
${.CURDIR}/gmp.h ${DESTDIR}/usr/include/
|
||||
|
||||
cre-mparam: cre-mparam.c
|
||||
$(CC) $(CFLAGS) ${.CURDIR}/cre-mparam.c -o ${.TARGET}
|
||||
|
Loading…
Reference in New Issue
Block a user