summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2009-03-28 11:34:09 +0000
committerRoger Leigh <rleigh@debian.org>2009-03-28 13:04:30 +0000
commit7e5d11190ae06b0a3958a57ab0ee2f465dab668f (patch)
tree54d00badaf0e95049d39c07f013bf247649b8fe9 /bin
parent7a37dc22435902adadd8a2c37e2088c53b465360 (diff)
downloadschroot-7e5d11190ae06b0a3958a57ab0ee2f465dab668f.tar.gz
[build] Use $(mkinstalldirs) to create directories
Signed-off-by: Roger Leigh <rleigh@debian.org>
Diffstat (limited to 'bin')
-rw-r--r--bin/schroot/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/schroot/Makefile.am b/bin/schroot/Makefile.am
index b02cb103..eb7f71b3 100644
--- a/bin/schroot/Makefile.am
+++ b/bin/schroot/Makefile.am
@@ -71,7 +71,7 @@ install-exec-hook:
chmod 4755 "$(DESTDIR)$(bindir)/schroot"
install-data-hook:
- $(MKDIR_P) $(DESTDIR)$(SCHROOT_CONF_CHROOT_D)
- $(MKDIR_P) $(DESTDIR)$(SCHROOT_MOUNT_DIR)
- $(MKDIR_P) $(DESTDIR)$(SCHROOT_SESSION_DIR)
- $(MKDIR_P) $(DESTDIR)$(SCHROOT_UNPACK_DIR)
+ $(mkinstalldirs) $(DESTDIR)$(SCHROOT_CONF_CHROOT_D)
+ $(mkinstalldirs) $(DESTDIR)$(SCHROOT_MOUNT_DIR)
+ $(mkinstalldirs) $(DESTDIR)$(SCHROOT_SESSION_DIR)
+ $(mkinstalldirs) $(DESTDIR)$(SCHROOT_UNPACK_DIR)