diff options
author | andrew <andrew@FreeBSD.org> | 2013-01-25 06:18:49 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2013-01-25 06:18:49 +0000 |
commit | 7c6cedfc5960cf37c1945687db87c260055ee755 (patch) | |
tree | 363e9d39ad7e943999b1327117542b295e76edec | |
parent | 5c0ad3a1ac036eea63e5d7f65b8412fa92be7b98 (diff) | |
download | FreeBSD-src-7c6cedfc5960cf37c1945687db87c260055ee755.zip FreeBSD-src-7c6cedfc5960cf37c1945687db87c260055ee755.tar.gz |
bsd.own.mk needs to be included before Makefil.inc so MK_ARM_EABI is defined
-rw-r--r-- | gnu/usr.bin/cc/c++/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/cc/c++/Makefile b/gnu/usr.bin/cc/c++/Makefile index 54e8561..98e1ea3 100644 --- a/gnu/usr.bin/cc/c++/Makefile +++ b/gnu/usr.bin/cc/c++/Makefile @@ -1,5 +1,8 @@ # $FreeBSD$ +NO_MAN= +.include <bsd.own.mk> + .include "../Makefile.inc" .include "../Makefile.fe" @@ -7,13 +10,10 @@ PROG= g++ SRCS+= g++spec.c -NO_MAN= DPADD= ${LIBCPP} ${LIBIBERTY} LDADD= ${LIBCPP} ${LIBIBERTY} -.include <bsd.own.mk> - .if ${MK_CLANG_IS_CC} == "no" LINKS= ${BINDIR}/g++ ${BINDIR}/c++ LINKS+= ${BINDIR}/g++ ${BINDIR}/CC |