[PATCH] Makefile: bugfix for handling platform paths

Andrew Jones ajones at ventanamicro.com
Tue Nov 22 09:29:36 PST 2022


On Tue, Nov 22, 2022 at 09:42:38PM +0800, Xiang W wrote:
> 在 2022-11-22星期二的 12:28 +0200,Alejandro Cabrera Aldaya写道:
> > If the path where this repo is located contains the platform name on it,
> > the original Makefile replaced its occurrences from the path making it an invalid path.
> > This commit prevents this behavior replacing only the last part of the path as intended.
> > 
> > Signed-off-by: Alejandro Cabrera Aldaya <aldaya at gmail.com>
> > ---
> >  Makefile | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/Makefile b/Makefile
> > index 8db6eab..32d4c48 100644
> > --- a/Makefile
> > +++ b/Makefile
> > @@ -47,7 +47,7 @@ ifdef PLATFORM_DIR
> >      platform_parent_dir=$(platform_dir_path)
> >    else
> >      PLATFORM=$(shell basename $(platform_dir_path))
> > -    platform_parent_dir=$(subst $(PLATFORM),,$(platform_dir_path))
> > +    platform_parent_dir=$(shell dirname $(shell realpath $(platform_dir_path)))    
> > 
> 
> Looks good, could simplify it a bit.
> 	platform_parent_dir=$(shell realpath ${platform_dir_path}/..)

I like this simplified version better.

Reviewed-by: Andrew Jones <ajones at ventanamicro.com>

Thanks,
drew

> 
> Reviewed-by: Xiang W <wxjstz at 126.com>
> 
> >    endif
> >  else
> >   platform_parent_dir=$(src_dir)/platform
> > -- 
> > 2.34.1
> > 
> > 
> 
> 
> 
> -- 
> opensbi mailing list
> opensbi at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/opensbi



More information about the opensbi mailing list