diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2018-06-26 18:36:31 +0200 |
---|---|---|
committer | Lubomir Rintel <lkundrak@v3.sk> | 2018-06-28 20:38:52 +0200 |
commit | 1491efa5d8ec1f90eb237eced2252a9e5cfc5b10 (patch) | |
tree | afd1214de6a0e734497eb7d31b63184da3b0d40f /libnm | |
parent | 22813fdc6005fa3ed0ecddfdb21fefd4bea616c3 (diff) | |
download | NetworkManager-1491efa5d8ec1f90eb237eced2252a9e5cfc5b10.tar.gz |
meson: run the check-export.sh in test phase
Targets not depended on by anything are not useful and likely never get run.
Diffstat (limited to 'libnm')
-rw-r--r-- | libnm/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libnm/meson.build b/libnm/meson.build index 151ad9e87d..27089004c7 100644 --- a/libnm/meson.build +++ b/libnm/meson.build @@ -186,10 +186,10 @@ pkg.generate( ] ) -run_target( +test( 'check-local-exports-' + libnm_name, - command: [check_exports, libnm.full_path(), linker_script], - depends: libnm + check_exports, + args: [libnm.full_path(), linker_script], ) if enable_introspection |