summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2018-04-13 14:45:19 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2018-04-13 14:58:46 +1000
commit8a223e739b0a35e286675f945a890b2738022332 (patch)
tree1d4d06873bfafef3da5633cff29f5c771c380001
parente428e5e87a83127db90476e5a7d7e48546fafd6f (diff)
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 <peter.hutterer@who-t.net>
-rw-r--r--meson.build3
-rwxr-xr-xtools/install-compat-scripts.sh7
-rwxr-xr-xtools/libinput-debug-events.compat4
-rwxr-xr-xtools/libinput-list-devices.compat4
4 files changed, 0 insertions, 18 deletions
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 $@