Quoting Jon Turney (2018-01-24 12:26:47)
> On 24/01/2018 19:35, Dylan Baker wrote:
> > v2: - Also fix drirc install path
> > 
> > Fixes: d1992255bb29 ("meson: Add build Intel "anv" vulkan driver")
> > Reported-by: Marc Dietrich <marvi...@gmx.de>
> > Signed-off-by: Dylan Baker <dylan.c.ba...@intel.com>
> > Reviewed-by: Eric Engestrom <eric.engest...@imgtec.com> (v1)
> > ---
> >   src/util/meson.build | 9 ++++++---
> >   1 file changed, 6 insertions(+), 3 deletions(-)
> > 
> > diff --git a/src/util/meson.build b/src/util/meson.build
> > index fa591c92e56..4d34d578a25 100644
> > --- a/src/util/meson.build
> > +++ b/src/util/meson.build
> > @@ -83,7 +83,9 @@ files_mesa_util = files(
> >     'u_vector.h',
> >   )
> >   
> > -install_data('drirc', install_dir : get_option('sysconfdir'))
> > +sysdir = join_paths(get_option('prefix'), get_option('sysconfdir'))
> > +
> > +install_data('drirc', install_dir : sysdir)
> 
> Hmm.. I think this would be a meson bug if this is needed.  the path 
> given to install_dir: is relative to the prefix, unless absolute.
> 
> (see the last paragraph of 
> http://mesonbuild.com/Installing.html#installing, although this could 
> all be much better documented...)
> 

Gahh. This is the thing that tripped me up originally. I'll go back to the V1
and just push that.

Dylan

Attachment: signature.asc
Description: signature

_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to