diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2022-04-14 10:30:02 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2022-04-14 10:51:48 +0300 |
commit | b1006c97511b6e6ed3b92bacab61c42be13f458b (patch) | |
tree | fefdaa14c2b3876880061d4aedf0d14601c0cb83 /meson.build | |
parent | 69bda7298f3ee3199fb338aa533369ce66b83e49 (diff) |
script/agl-activator: No need for the script
Script is no longer needed. Running it as the regular user (agl-driver)
will no longer need this script.
Bug-AGL: SPEC-4324
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: If7bcb035039b1e45d842b5fa75144ee82edf91f1
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/meson.build b/meson.build index 7455aea..0a56242 100644 --- a/meson.build +++ b/meson.build @@ -114,13 +114,3 @@ exe_wth_receiver = executable( install_rpath: binplugin_dir, install: true ) - -cp = find_program('cp') -script_target = custom_target('install_script', - command: [ cp, '@INPUT@', '@OUTPUT@' ], - output : 'agl-activator', - input : 'script/agl-activator', - install : true, - install_dir: binplugin_dir, -) - |