From: Mike Frysinger Date: Fri, 14 Aug 2015 04:03:18 +0000 (-0400) Subject: app-portage/eclass-manpages: add a check for the @ECLASS name #537392 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=af7a9cb899d8f0451e2249efb505c3f95c5f81c0;p=gentoo.git app-portage/eclass-manpages: add a check for the @ECLASS name #537392 --- diff --git a/app-portage/eclass-manpages/files/eclass-to-manpage.awk b/app-portage/eclass-manpages/files/eclass-to-manpage.awk index 11ece1f82a7e..ee4281075004 100644 --- a/app-portage/eclass-manpages/files/eclass-to-manpage.awk +++ b/app-portage/eclass-manpages/files/eclass-to-manpage.awk @@ -145,6 +145,10 @@ function handle_eclass() { desc = "" example = "" + # Sanity check the eclass name. #537392 + if (eclass !~ /[.]eclass$/) + fail(eclass ": @ECLASS name is missing a '.eclass' suffix") + # first the man page header print ".\\\" -*- coding: utf-8 -*-" print ".\\\" ### DO NOT EDIT THIS FILE"