diff options
author | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2020-10-26 10:56:06 +0100 |
---|---|---|
committer | Beniamino Galvani <bgalvani@redhat.com> | 2020-10-26 15:56:39 +0100 |
commit | 9a935e516e7015ef3a9224e034b8de9933e584d5 (patch) | |
tree | 19a4b24ecb4308d40a8fa331275864dc3557df55 | |
parent | 983798d945acd69c3bfa5093d72a78311743450d (diff) | |
download | NetworkManager-9a935e516e7015ef3a9224e034b8de9933e584d5.tar.gz |
Makefile: remove "libnm.actions" explicitly when uninstalling
On Fedora 33 when compiling NetworkManager it is failing with the
following error:
```
ERROR: files left in build directory after distclean:
./docs/libnm/libnm.actions
make[1]: *** [Makefile:18427: distcleancheck] Error 1
make[1]: Leaving directory '/builddir/nm-build/NetworkManager/NetworkManager-1.27.90/_build/sub'
make: *** [Makefile:18356: distcheck] Error 1
Error make distcheck
```
Adding the file to the DISTCLEANFILES will enforce the removal of this
file.
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/659
-rw-r--r-- | docs/libnm/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/libnm/Makefile.am b/docs/libnm/Makefile.am index 6f04cd1e4d..b637f79835 100644 --- a/docs/libnm/Makefile.am +++ b/docs/libnm/Makefile.am @@ -109,6 +109,8 @@ CLEANFILES += \ tmpl/* \ xml/* +DISTCLEANFILES = libnm.actions + if GTK_DOC_BUILD_HTML check-local-gtk-doc-patch: @if grep -q -F '<a href="libnm-nm-setting-user.html">nm-setting-user</a>' "$(top_builddir)/docs/libnm/html/index.html"; then \ |