diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2019-11-12 07:34:30 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-11-26 01:49:57 +0100 |
commit | 49a8e90bc78c17600eb4903ba00be26341df9161 (patch) | |
tree | 355273950891ab3af5fac440aa3a7efa38299cae /build-aux | |
parent | 349c22d043290ccd0cce9f30981f5415e295442a (diff) | |
download | pacman-49a8e90bc78c17600eb4903ba00be26341df9161.tar.gz pacman-49a8e90bc78c17600eb4903ba00be26341df9161.tar.xz |
meson: make non-symlink scripts install for real, and use a better wrapper
We now generate the scripts using their real name, install them using
meson's builtin facility instead of an install_script, and generate the
wrapper scripts in the root of the build directory, instead of a
subdirectory.
This gets us closer to resolving FS#64394.
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/meson-install-script.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/build-aux/meson-install-script.sh b/build-aux/meson-install-script.sh deleted file mode 100644 index f5a42fca..00000000 --- a/build-aux/meson-install-script.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -built_script=$1 -dest_path=$2 - -install -Dm755 "$built_script" "$DESTDIR/$dest_path" |