build: fix install from any directory with Meson 0.55
authorDmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Tue, 10 Aug 2021 23:03:22 +0000 (02:03 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 27 Aug 2021 19:42:25 +0000 (21:42 +0200)
commitbfd3c352eb9729f97da6e1b5e958e121542d8a8d
tree3325ff9c452d169532c3705a8f384bd0faabd38c
parent1539acc20a63ec36d1045cdc2e1ae0e6fd0499a2
build: fix install from any directory with Meson 0.55

Install command on Windows for Meson >= 0.55.0 referenced the script
by a plain string, assuming the build directory to be directly under
the source tree root.
This resulted in an error when the assumption did not hold:

    c:\python\python.exe: can't open file
    '../buildtools/symlink-drivers-solibs.py':
    [Errno 2] No such file or directory

Use files() to make a valid script path for any build directory.

Fixes: cd27047dbee1 ("build: support drivers symlink on Windows")
Cc: stable@dpdk.org
Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Nick Connolly <nick.connolly@mayadata.io>
config/meson.build