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

Paul Eggleton paul.eggleton at linux.intel.com
Mon Jul 23 15:05:11 PDT 2012


On Monday 23 July 2012 10:59:57 Kevin Strasser wrote:
> 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

Merged to meta-baryon master with a PR bump, thanks.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



More information about the yocto mailing list