From 8a223e739b0a35e286675f945a890b2738022332 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 13 Apr 2018 14:45:19 +1000 Subject: [PATCH] Drop the libinput-list-devices and libinput-debug-events compat scripts Added in 1.8, let's drop them for 1.11 Signed-off-by: Peter Hutterer --- meson.build | 3 --- tools/install-compat-scripts.sh | 7 ------- tools/libinput-debug-events.compat | 4 ---- tools/libinput-list-devices.compat | 4 ---- 4 files changed, 18 deletions(-) delete mode 100755 tools/install-compat-scripts.sh delete mode 100755 tools/libinput-debug-events.compat delete mode 100755 tools/libinput-list-devices.compat diff --git a/meson.build b/meson.build index fa572b6d..8dff9e9d 100644 --- a/meson.build +++ b/meson.build @@ -543,9 +543,6 @@ configure_file(input : 'tools/libinput.man', install_dir : join_paths(get_option('mandir'), 'man1') ) -meson.add_install_script('tools/install-compat-scripts.sh', - join_paths(get_option('prefix'), get_option('bindir'))) - ptraccel_debug_sources = [ 'tools/ptraccel-debug.c' ] executable('ptraccel-debug', ptraccel_debug_sources, diff --git a/tools/install-compat-scripts.sh b/tools/install-compat-scripts.sh deleted file mode 100755 index b046b849..00000000 --- a/tools/install-compat-scripts.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -bindir="${DESTDIR}${1}" - -# Do not create bindir, because if it is not there now, we have a problem -cp "${MESON_SOURCE_ROOT}/tools/libinput-list-devices.compat" "${bindir}/libinput-list-devices" -cp "${MESON_SOURCE_ROOT}/tools/libinput-debug-events.compat" "${bindir}/libinput-debug-events" diff --git a/tools/libinput-debug-events.compat b/tools/libinput-debug-events.compat deleted file mode 100755 index dc11af75..00000000 --- a/tools/libinput-debug-events.compat +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -echo "WARNING: This compatibility wrapper will be removed in the future. Please run 'libinput debug-events' instead" 1>&2 -exec libinput debug-events $@ diff --git a/tools/libinput-list-devices.compat b/tools/libinput-list-devices.compat deleted file mode 100755 index 3fe3baa5..00000000 --- a/tools/libinput-list-devices.compat +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -echo "WARNING: This compatibility wrapper will be removed in the future. Please run 'libinput list-devices' instead" 1>&2 -exec libinput list-devices $@