From: Alberto Bursi Date: Sun, 16 Oct 2016 15:21:42 +0000 (+0200) Subject: xfsprogs: install path consistent with fs tools X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fyousong.git;a=commitdiff_plain;h=5c96200dabe9190bc69ee0380ebbf0de4e0810f5 xfsprogs: install path consistent with fs tools changed install path from /sbin to /usr/sbin to be consistent with other filesystem tools ext2-3-4 and f2fs tools are in /usr/sbin, for example Signed-off-by: Alberto Bursi --- diff --git a/package/utils/xfsprogs/Makefile b/package/utils/xfsprogs/Makefile index 638ec4c67b..cd9d5f9d38 100644 --- a/package/utils/xfsprogs/Makefile +++ b/package/utils/xfsprogs/Makefile @@ -69,19 +69,19 @@ MAKE_FLAGS += \ PKG_DOC_DIR=$(PKG_INSTALL_DIR)/usr/share/doc/xfsprogs define Package/xfs-mkfs/install - mkdir -p $(1)/sbin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/mkfs.xfs $(1)/sbin + mkdir -p $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/mkfs.xfs $(1)/usr/sbin endef define Package/xfs-fsck/install - mkdir -p $(1)/sbin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/xfs_repair $(1)/sbin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xfs_db $(1)/sbin + mkdir -p $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/xfs_repair $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xfs_db $(1)/usr/sbin endef define Package/xfs-growfs/install - mkdir -p $(1)/sbin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xfs_growfs $(1)/sbin + mkdir -p $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/xfs_growfs $(1)/usr/sbin endef $(eval $(call BuildPackage,xfs-mkfs))