File: meson.build

package info (click to toggle)
lxc 1%3A6.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,808 kB
  • sloc: ansic: 68,840; sh: 4,266; python: 135; makefile: 59
file content (39 lines) | stat: -rw-r--r-- 736 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# SPDX-License-Identifier: LGPL-2.1+

bash_completion = configure_file(
    configuration: conf,
    input: '_lxc.in',
    output: '_lxc',
    install: true,
    install_dir: bashcompletiondir)


foreach cmd: [
    'lxc-attach',
    'lxc-autostart',
    'lxc-cgroup',
    'lxc-checkpoint',
    'lxc-config',
    'lxc-console',
    'lxc-copy',
    'lxc-create',
    'lxc-destroy',
    'lxc-device',
    'lxc-execute',
    'lxc-freeze',
    'lxc-info',
    'lxc-ls',
    'lxc-monitor',
    'lxc-snapshot',
    'lxc-start',
    'lxc-stop',
    'lxc-top',
    'lxc-unfreeze',
    'lxc-unshare',
    'lxc-usernsexec',
    'lxc-wait',
]
    install_symlink(cmd,
        pointing_to: '_lxc',
        install_dir: bashcompletiondir)
endforeach