From af7a9cb899d8f0451e2249efb505c3f95c5f81c0 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 14 Aug 2015 00:03:18 -0400 Subject: app-portage/eclass-manpages: add a check for the @ECLASS name #537392 --- app-portage/eclass-manpages/files/eclass-to-manpage.awk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app-portage') diff --git a/app-portage/eclass-manpages/files/eclass-to-manpage.awk b/app-portage/eclass-manpages/files/eclass-to-manpage.awk index 11ece1f82a7..ee428107500 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" -- cgit v1.2.1