svn commit: r248355 - stable/9/gnu/usr.bin/cc/c++

Brooks Davis brooks at FreeBSD.org
Fri Mar 15 22:20:45 UTC 2013


Author: brooks
Date: Fri Mar 15 22:20:45 2013
New Revision: 248355
URL: http://svnweb.freebsd.org/changeset/base/248355

Log:
  MFC r245882,245898
  
  Reorder so that NO_MAN is declared before bsd.own.mk is included and thus
  has an effect (not installed a g++.1 manpage over the g++.1(.gz) link
  created in ../cc).
  
  bsd.own.mk needs to be included before Makefil.inc so MK_ARM_EABI is defined

Modified:
  stable/9/gnu/usr.bin/cc/c++/Makefile
Directory Properties:
  stable/9/gnu/usr.bin/cc/c++/   (props changed)

Modified: stable/9/gnu/usr.bin/cc/c++/Makefile
==============================================================================
--- stable/9/gnu/usr.bin/cc/c++/Makefile	Fri Mar 15 22:14:41 2013	(r248354)
+++ stable/9/gnu/usr.bin/cc/c++/Makefile	Fri Mar 15 22:20:45 2013	(r248355)
@@ -1,5 +1,6 @@
 # $FreeBSD$
 
+NO_MAN=
 .include <bsd.own.mk>
 
 .include "../Makefile.inc"
@@ -9,13 +10,13 @@
 
 PROG=	g++
 SRCS+=	g++spec.c
+
+DPADD=	${LIBCPP} ${LIBIBERTY}
+LDADD=	${LIBCPP} ${LIBIBERTY}
+
 .if ${MK_CLANG_IS_CC} == "no"
 LINKS=	${BINDIR}/g++ ${BINDIR}/c++
 LINKS+=	${BINDIR}/g++ ${BINDIR}/CC
 .endif
-NO_MAN=
-
-DPADD=	${LIBCPP} ${LIBIBERTY}
-LDADD=	${LIBCPP} ${LIBIBERTY}
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list