summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2017-02-22 11:42:35 +0100
committerThomas Haller <thaller@redhat.com>2017-02-22 11:42:38 +0100
commitc2f0764c1e0e976a9d83b745682544c7e76d6fa7 (patch)
treef2f591fdc07eff33ca2bc06b03d3804f95957ffe
parentf93fbc76ece73799c15da5b0993c4021e3abc07f (diff)
downloadNetworkManager-c2f0764c1e0e976a9d83b745682544c7e76d6fa7.tar.gz
build: add slash to directory name for mkdir
Just for consistency with other locations that call $(MKDIR_P).
-rw-r--r--Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index eb6bb4608b..86747a4c1d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -289,7 +289,7 @@ DBUS_INTERFACE_DOCS = \
docs/api/dbus-org.freedesktop.NetworkManager.DnsManager.xml
introspection/%.c: introspection/%.xml
- @$(MKDIR_P) introspection
+ @$(MKDIR_P) introspection/
$(AM_V_GEN) gdbus-codegen \
--generate-c-code $(basename $@) \
--generate-docbook docs/api/dbus \
@@ -563,11 +563,11 @@ EXTRA_DIST += \
libnm-core/crypto_nss.c
libnm-core/nm-vpn-dbus-types.xml: libnm-core libnm-core/nm-vpn-dbus-interface.h tools/enums-to-docbook.pl
- @$(MKDIR_P) libnm-core
+ @$(MKDIR_P) libnm-core/
$(AM_V_GEN) @PERL@ $(srcdir)/tools/enums-to-docbook.pl 'nm-vpn-dbus-types' 'VPN Plugin D-Bus API Types' $^ >$@
libnm-core/nm-dbus-types.xml: libnm-core libnm-core/nm-dbus-interface.h tools/enums-to-docbook.pl
- @$(MKDIR_P) libnm-core
+ @$(MKDIR_P) libnm-core/
$(AM_V_GEN) @PERL@ $(srcdir)/tools/enums-to-docbook.pl 'nm-dbus-types' 'NetworkManager D-Bus API Types' $^ >$@
BUILT_SOURCES += \