From d230ec6f17a2b64ed61936013234414c74e7c29f Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 28 Oct 2018 02:42:53 -0400 Subject: meson: add a wrapper to bootstrap scripts from within build dir This doesn't do quite as good of a job of "hiding away" the real script as we did with autotools, but it satisfies the need for being able to run scripts which depend on libmakepkg with the local copy within the repo. We do, however, improve upon the autotools script by ensuring that the bash path used in configuring pacman is the interpreter used to run the underlying script. --- build-aux/meson-install-script.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 build-aux/meson-install-script.sh (limited to 'build-aux/meson-install-script.sh') diff --git a/build-aux/meson-install-script.sh b/build-aux/meson-install-script.sh new file mode 100644 index 00000000..f5a42fca --- /dev/null +++ b/build-aux/meson-install-script.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +built_script=$1 +dest_path=$2 + +install -Dm755 "$built_script" "$DESTDIR/$dest_path" -- cgit v1.2.3-54-g00ecf