From cf367751eb1d0b545b2dd147ea59675c094ca5f1 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 28 Apr 2013 19:13:04 +0200 Subject: [PATCH] [dev-lang/python-tk] fix QA check at the end of src_install --- dev-lang/python-tk/python-tk-3.2.3-r2.ebuild | 2 +- dev-lang/python-tk/python-tk-3.3.0-r1.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lang/python-tk/python-tk-3.2.3-r2.ebuild b/dev-lang/python-tk/python-tk-3.2.3-r2.ebuild index 0f50568c9..405bb2552 100644 --- a/dev-lang/python-tk/python-tk-3.2.3-r2.ebuild +++ b/dev-lang/python-tk/python-tk-3.2.3-r2.ebuild @@ -191,5 +191,5 @@ src_install() { # QA check that we have _tkinter.so local found=$(find "${ED}" -name "_tkinter.so") - [ -z "${found}" ] && die "_tkinter.so not installed" + [ -z "${found}" ] && die "_tkinter*.so not installed" } diff --git a/dev-lang/python-tk/python-tk-3.3.0-r1.ebuild b/dev-lang/python-tk/python-tk-3.3.0-r1.ebuild index 222e23632..7947f604f 100644 --- a/dev-lang/python-tk/python-tk-3.3.0-r1.ebuild +++ b/dev-lang/python-tk/python-tk-3.3.0-r1.ebuild @@ -179,6 +179,6 @@ src_install() { done # QA check that we have _tkinter.so - local found=$(find "${ED}" -name "_tkinter.so") + local found=$(find "${ED}" -name "_tkinter*.so") [ -z "${found}" ] && die "_tkinter.so not installed" }