mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-21 14:20:05 +01:00
11 lines
243 B
Bash
11 lines
243 B
Bash
|
|
#!/bin/sh
|
||
|
|
#
|
||
|
|
# $1: abs path to libdir
|
||
|
|
# $2: abs path to .so file
|
||
|
|
|
||
|
|
libdir="$1"
|
||
|
|
sofile=$(basename "$2")
|
||
|
|
|
||
|
|
echo "Restoring SELinux context on $MESON_INSTALL_DESTDIR_PREFIX/$libdir/$sofile"
|
||
|
|
restorecon "$MESON_INSTALL_DESTDIR_PREFIX/$libdir/$sofile"
|