From 4d269b3cc651498296665d1104b66b0712d9a9f0 Mon Sep 17 00:00:00 2001 From: zrj Date: Thu, 18 Jan 2018 07:27:51 +0200 Subject: [PATCH] gcc50: Move out manpage version handling. The Makefile.cco should only affect global ones. --- gnu/usr.bin/Makefile.cco | 5 ++--- gnu/usr.bin/cc50/Makefile.version | 1 + 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/usr.bin/Makefile.cco b/gnu/usr.bin/Makefile.cco index 603fda3ee0..b8c992c1cf 100644 --- a/gnu/usr.bin/Makefile.cco +++ b/gnu/usr.bin/Makefile.cco @@ -1,7 +1,7 @@ # DragonFly maintains two sets of compilers. # In order to keep man page generation simple when the primary compiler -# changes, this makefile will direct the makefile that included it how -# to name the man pages and if it should hardlink a generic man page to it. +# changes, this makefile will direct the makefile that included it to +# hardlink a generic man pages for the selected primary compiler. # The same approach is used for the two sets of binutils CC_PRIMARY= gcc50 @@ -10,6 +10,5 @@ CC_BACKUP= gcc47 .if defined(COMPVERSION) .if (${COMPVERSION} == ${CC_PRIMARY}) IS_PRIMARY= 1 -MANPAGEVER= 50 .endif .endif diff --git a/gnu/usr.bin/cc50/Makefile.version b/gnu/usr.bin/cc50/Makefile.version index dde9b18209..4b3f42797b 100644 --- a/gnu/usr.bin/cc50/Makefile.version +++ b/gnu/usr.bin/cc50/Makefile.version @@ -9,3 +9,4 @@ GCCDATESTAMP= 2016-08-27 GCCSHORTDATE= ${GCCDATESTAMP:S/-//g} GCCPOINTVER= 5.0 GCCSHORTVER= 50 +MANPAGEVER= 50 -- 2.11.4.GIT