summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei-Ting Yang2025-06-06 11:58:35 +0000
committerHauke Mehrtens2025-06-21 12:04:20 +0000
commit695548128f099a0073619ba112c75f3bf79d8eed (patch)
tree8228d4753c8a9b2450fc3c0ef06f26e977360ca4
parent3e5a70482b71076a06bca53647758cb5a69c3de6 (diff)
downloadopenwrt-695548128f099a0073619ba112c75f3bf79d8eed.tar.gz
util-linux: remove redundant slashes
Remove redundant slashes. Signed-off-by: Wei-Ting Yang <williamatcg@gmail.com> Link: https://github.com/openwrt/openwrt/pull/19041 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--package/utils/util-linux/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/utils/util-linux/Makefile b/package/utils/util-linux/Makefile
index 9caf587d58..d5fef39018 100644
--- a/package/utils/util-linux/Makefile
+++ b/package/utils/util-linux/Makefile
@@ -879,12 +879,12 @@ endef
define Package/uuidd/install
$(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin//uuidd $(1)/usr/sbin/
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/uuidd $(1)/usr/sbin/
endef
define Package/uuidgen/install
$(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin//uuidgen $(1)/usr/bin/
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/uuidgen $(1)/usr/bin/
endef
define Package/wall/install