Several webmin modules are left out of the build due to
misuse of the rename command. Acceptable use of the rename
command depends on the version being supplied. Without knowledge
of the version being used it is possible that any particular
use will result in syntax errors.

Signed-off-by: Kevin Strasser <kevin.stras...@linux.intel.com>
---
 recipes-extended/webmin/webmin_1.570.bb |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/recipes-extended/webmin/webmin_1.570.bb 
b/recipes-extended/webmin/webmin_1.570.bb
index 63a1ed2..d7e14de 100644
--- a/recipes-extended/webmin/webmin_1.570.bb
+++ b/recipes-extended/webmin/webmin_1.570.bb
@@ -53,7 +53,11 @@ do_configure() {
     sed -i "s/netstd_nfs/nfsserver/" exports/config-generic-linux
 
     # Fix insane naming that causes problems at packaging time (must be done 
before deleting below)
-    find . -name "*\**" -exec rename \* ALL {} \;
+    find . -name "*\**" | while read from
+    do
+        to=`echo "$from" | sed "s/*/ALL/"`
+        mv "$from" "$to"
+    done
 
     # Remove some other files we don't need
     find . -name "config-*" -a \! -name "config-generic-linux" -a \! -name 
"config-ALL-linux" -a \! -name "*.pl" -delete
-- 
1.7.9.5

_______________________________________________
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto

Reply via email to