From c60040e92c03578eebcbe0e8d0614f422b68d99b Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 23 Dec 2016 13:09:24 +0100 Subject: [PATCH] Let's meson found the compile_resource.py script. Add the INSTALL_DIR/bin dir to the path and allow meson to found installed binaries. --- kiwix-build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kiwix-build.py b/kiwix-build.py index 0505752..8717d42 100755 --- a/kiwix-build.py +++ b/kiwix-build.py @@ -292,6 +292,7 @@ class MesonMixin(MakeMixin): if env['PKG_CONFIG_PATH'] else pj(options.install_dir, options.libprefix, 'pkgconfig') ) + env['PATH'] = ':'.join([pj(options.install_dir, 'bin'), env['PATH']]) if options.build_static: env['LDFLAGS'] = env['LDFLAGS'] + " -static-libstdc++ --static" library_type = 'static'