diff options
author | obrien <obrien@FreeBSD.org> | 1998-03-18 12:28:09 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-03-18 12:28:09 +0000 |
commit | 0860d00e59465a6801d5ae7a80e1b849de31497d (patch) | |
tree | 55a590acdb5ab5135e98886a431d48989f606fb7 /gnu | |
parent | 09a500144722a31498528a5a7ed039671195015f (diff) | |
download | FreeBSD-src-0860d00e59465a6801d5ae7a80e1b849de31497d.zip FreeBSD-src-0860d00e59465a6801d5ae7a80e1b849de31497d.tar.gz |
I goofed on the `LINKS' syntax.
Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/c++/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/c++/Makefile b/gnu/usr.bin/cc/c++/Makefile index c367283..0fec071 100644 --- a/gnu/usr.bin/cc/c++/Makefile +++ b/gnu/usr.bin/cc/c++/Makefile @@ -1,11 +1,12 @@ # -# $Id: Makefile,v 1.7 1997/02/22 15:44:49 peter Exp $ +# $Id: Makefile,v 1.8 1998/03/08 12:27:04 obrien Exp $ # PROG = c++ SRCS = g++.c BINDIR= /usr/bin -LINKS= ${BINDIR}/c++ ${BINDIR}/g++ ${BINDIR}/CC +LINKS= ${BINDIR}/c++ ${BINDIR}/g++ +LINKS+= ${BINDIR}/c++ ${BINDIR}/CC NOMAN= 1 .include <bsd.prog.mk> |