diff options
author | andreas <andreas@FreeBSD.org> | 1997-08-17 21:24:06 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-08-17 21:24:06 +0000 |
commit | 6f6fafa0814823b57e29e56d6a092242ffc10ec1 (patch) | |
tree | f0b1e24d58553abb1c100f96748a9510089b4f1c /gnu | |
parent | 2819c5d8c972a11613376249120d0ba63ab1e4cc (diff) | |
download | FreeBSD-src-6f6fafa0814823b57e29e56d6a092242ffc10ec1.zip FreeBSD-src-6f6fafa0814823b57e29e56d6a092242ffc10ec1.tar.gz |
during the ,beforeinstall' target mp.h has to be installed as well
to /usr/include. Otherwise chkey and newkey can't be compiled
properly during make world.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libgmp/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/lib/libgmp/Makefile b/gnu/lib/libgmp/Makefile index 805f804a..21e9072 100644 --- a/gnu/lib/libgmp/Makefile +++ b/gnu/lib/libgmp/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.10 1997/02/22 15:42:57 peter Exp $ +# $Id: Makefile,v 1.11 1997/04/10 16:33:22 bde Exp $ # LIB= gmp @@ -91,6 +91,8 @@ CLEANDIRS+= ${.OBJDIR}/mpz ${.CURDIR}/mpz \ beforeinstall: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${GMPDIR}/gmp.h ${DESTDIR}/usr/include + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${GMPDIR}/mp.h ${DESTDIR}/usr/include .S.o: ${CC} ${SFLAGS} ${CFLAGS:M-[ID]*} ${AINC} -c ${.IMPSRC} -o ${.TARGET} |