From d2a8d312849ad694e957475497b07ddb98e3a2c5 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 20 Dec 2008 20:11:03 +0000 Subject: Simplify the InheritAutotools pattern by using \b to match word boundaries. svn path=/main/trunk/; revision=12264 --- pym/repoman/checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index 6778c8c58..6f2c076c3 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -242,8 +242,8 @@ class InheritAutotools(LineCheck): _autotools_funcs = ( "eaclocal", "eautoconf", "eautoheader", "eautomake", "eautoreconf", "_elibtoolize") - _autotools_func_re = re.compile(r'(^|\s|\|\||&&)(' + \ - "|".join(_autotools_funcs) + r')(\s|\|\||&&|\\?$)') + _autotools_func_re = re.compile(r'\b(' + \ + "|".join(_autotools_funcs) + r')\b') # Exempt eclasses: # git - An EGIT_BOOTSTRAP variable may be used to call one of # the autotools functions. -- cgit v1.2.3-1-g7c22