diff options
author | Roger Leigh <rleigh@debian.org> | 2009-09-19 18:15:05 +0100 |
---|---|---|
committer | Roger Leigh <rleigh@debian.org> | 2009-09-19 18:15:05 +0100 |
commit | 8bd31862e2339508f2e49f9df4bf5b3fb26030b3 (patch) | |
tree | ad7e383bc5fb0a62942db2ab98990d82c798c915 /bin | |
parent | a09167ff1be49eddbb18a134c09c97881ca532bd (diff) | |
download | schroot-8bd31862e2339508f2e49f9df4bf5b3fb26030b3.tar.gz |
build: Use MKDIR_P in place of mkinstalldirs
Diffstat (limited to 'bin')
-rw-r--r-- | bin/schroot/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/schroot/Makefile.am b/bin/schroot/Makefile.am index 6711a215..8122e7a0 100644 --- a/bin/schroot/Makefile.am +++ b/bin/schroot/Makefile.am @@ -51,10 +51,10 @@ install-exec-hook: chmod 4755 "$(DESTDIR)$(bindir)/schroot" install-data-hook: - $(mkinstalldirs) $(DESTDIR)$(SCHROOT_CONF_CHROOT_D) - $(mkinstalldirs) $(DESTDIR)$(SCHROOT_MOUNT_DIR) - $(mkinstalldirs) $(DESTDIR)$(SCHROOT_SESSION_DIR) - $(mkinstalldirs) $(DESTDIR)$(SCHROOT_FILE_UNPACK_DIR) - $(mkinstalldirs) $(DESTDIR)$(SCHROOT_OVERLAY_DIR) - $(mkinstalldirs) $(DESTDIR)$(SCHROOT_UNDERLAY_DIR) + $(MKDIR_P) $(DESTDIR)$(SCHROOT_CONF_CHROOT_D) + $(MKDIR_P) $(DESTDIR)$(SCHROOT_MOUNT_DIR) + $(MKDIR_P) $(DESTDIR)$(SCHROOT_SESSION_DIR) + $(MKDIR_P) $(DESTDIR)$(SCHROOT_FILE_UNPACK_DIR) + $(MKDIR_P) $(DESTDIR)$(SCHROOT_OVERLAY_DIR) + $(MKDIR_P) $(DESTDIR)$(SCHROOT_UNDERLAY_DIR) |