build: add slash to directory name for mkdir

Just for consistency with other locations that call
$(MKDIR_P).
This commit is contained in:
Thomas Haller 2017-02-22 11:42:35 +01:00
parent f93fbc76ec
commit c2f0764c1e

View file

@ -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 += \