[yocto] [meta-baryon][PATCH] webmin: remove use of the rename command

Kevin Strasser kevin.strasser at linux.intel.com
Mon Jul 23 10:59:57 PDT 2012


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.strasser at 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




More information about the yocto mailing list