[dev-lang/python-tk] fix QA check at the end of src_install

This commit is contained in:
Fabio Erculiani
2013-04-28 19:13:04 +02:00
parent bbfb126fe2
commit cf367751eb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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"
}
+1 -1
View File
@@ -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"
}