diff options
author | Thomas Haller <thaller@redhat.com> | 2014-07-04 13:36:13 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2014-07-04 13:43:59 +0200 |
commit | 63070fff0278d58683a966e8dfb9332cfd90cba2 (patch) | |
tree | 95846b096f86f4190677cb50ef19660605388161 /libnm-util | |
parent | 3cfd8b8eecce960ebb98488cfe51f62125ea8426 (diff) | |
download | NetworkManager-63070fff0278d58683a966e8dfb9332cfd90cba2.tar.gz |
build: call generate-setting-docs.py directly instead of through strace
This was added for debugging, but is no longer necessary.
Also, strace might not be installed on any system so don't depend on it.
Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'libnm-util')
-rw-r--r-- | libnm-util/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm-util/Makefile.am b/libnm-util/Makefile.am index 90dec54b2a..064aca0082 100644 --- a/libnm-util/Makefile.am +++ b/libnm-util/Makefile.am @@ -189,7 +189,7 @@ noinst_DATA = nm-setting-docs.xml nm-setting-docs.xml: generate-setting-docs.py NetworkManager-1.0.gir NetworkManager-1.0.typelib libnm-util.la export GI_TYPELIB_PATH=$(abs_builddir)$${GI_TYPELIB_PATH:+:$$GI_TYPELIB_PATH}; \ export LD_LIBRARY_PATH=$(abs_builddir)/.libs$${LD_LIBRARY_PATH:+:$$LD_LIBRARY_PATH}; \ - strace -o /tmp/strace.out $(srcdir)/generate-setting-docs.py \ + $(srcdir)/generate-setting-docs.py \ --gir $(builddir)/NetworkManager-1.0.gir \ --output $@ |