diff options
author | peter <peter@FreeBSD.org> | 1996-10-07 23:38:08 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-10-07 23:38:08 +0000 |
commit | 5e6008239130db765f4c435eef6c07ff4794a7f7 (patch) | |
tree | 4e9b8257031f175b15519c89eb7954f915fc424f /gnu | |
parent | 417a88b9aae05788ac887c8128df06ecc1bb627c (diff) | |
download | FreeBSD-src-5e6008239130db765f4c435eef6c07ff4794a7f7.zip FreeBSD-src-5e6008239130db765f4c435eef6c07ff4794a7f7.tar.gz |
Use ${INSTALL} -C instead of -c. I did it with -C originally, but during
testing I changed it to -c to check for missed files by looking at time
stamps in /usr/include/g++.
Submitted by: "Philippe Charnier" <charnier@xp11.frmug.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libg++/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libg++/Makefile b/gnu/lib/libg++/Makefile index d3c0b68..f00cbcf 100644 --- a/gnu/lib/libg++/Makefile +++ b/gnu/lib/libg++/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.14 1996/10/04 08:43:36 peter Exp $ +# $Id: Makefile,v 1.15 1996/10/04 15:11:42 peter Exp $ # GPPDIR= ${.CURDIR}/../../../contrib/libg++ @@ -44,7 +44,7 @@ HDRS= ACG.h AllocRing.h Binomial.h BitSet.h BitString.h Complex.h \ sysent.h typemacros.h beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${HDRS:S;^;${GPPDIR}/libg++/src/;} \ ${GPPDIR}/librx/rx.h \ ${DESTDIR}/usr/include/g++ |