diff options
author | ilovezfs <ilovezfs@icloud.com> | 2017-10-31 11:36:05 +0000 |
---|---|---|
committer | Simon McVittie <smcv@collabora.com> | 2017-10-31 11:36:05 +0000 |
commit | c7d8b723eb53848f9a86f36d640ea5f564d34590 (patch) | |
tree | 9fad65c372e7ce2db52501cbd36b4067991dc2ae | |
parent | 9ebf0004d193694de3a2d49ddbdebf839e443668 (diff) | |
download | dbus-c7d8b723eb53848f9a86f36d640ea5f564d34590.tar.gz |
build: Use $(MKDIR_P) syntax suitable for install-sh
This fixes the build when a GNU-compatible `mkdir -p` is not available.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=103521
[smcv: Add commit message]
Reviewed-by: Simon McVittie <smcv@collabora.com>
-rw-r--r-- | test/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index bb64e453..bc5bc185 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -543,7 +543,7 @@ EXTRA_DIST += $(static_data) ## copy tests to builddir so that generated tests and static tests ## are all in one place. all-local: copy-config-local uninstalled-config-local - $(AM_V_at)$(MKDIR_P) -m700 XDG_RUNTIME_DIR + $(AM_V_at)$(MKDIR_P) -m 700 XDG_RUNTIME_DIR copy-config-local: $(AM_V_at)$(MKDIR_P) data/valid-config-files/session.d |