summaryrefslogtreecommitdiff
path: root/nmcli
diff options
context:
space:
mode:
authorPavel Šimerda <pavlix@pavlix.net>2017-12-28 14:31:06 +0100
committerThomas Haller <thaller@redhat.com>2018-01-09 15:30:09 +0100
commit022c87e4ddd1eea5bf1e07852783752bd02e3f44 (patch)
tree2c35520e92e6dc9c8c8ff509247b2a6ab8a4778d /nmcli
parent4ff155fa70e11ad2658ddfb0b5df62810494a929 (diff)
downloadNetworkManager-th/pr/52.tar.gz
development: make it possible to run NetworkManager from build directoryth/pr/52
The combination of `./develop.sh` for bootstrap and configuration and the `./NetworkManager` and `./nmcli` makes it easy to build NetworkManager and then run it from the build directory.
Diffstat (limited to 'nmcli')
-rwxr-xr-xnmcli10
1 files changed, 10 insertions, 0 deletions
diff --git a/nmcli b/nmcli
new file mode 100755
index 0000000000..a093ee5b75
--- /dev/null
+++ b/nmcli
@@ -0,0 +1,10 @@
+#/bin/sh
+
+command="./clients/cli/nmcli"
+arguments=""
+
+export LD_LIBRARY_PATH=./libnm/.libs
+
+ldd $command | grep libnm
+
+$command $arguments "$@"