Skip to content

Commit 476f0e3

Browse files
committed
mk: Fix syntax error in installation target
1 parent 080d210 commit 476f0e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/install.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
install: dist-install-dir-$(CFG_BUILD)
1313
$(Q)sh tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(CFG_PREFIX)" --libdir="$(CFG_LIBDIR)" --mandir="$(CFG_MANDIR)"
1414
# Remove tmp files while we can because they may have been created under sudo
15-
$(Q)rm -R tmp/dist/$(PKG_NAME)-$(CFG_BUILD/
15+
$(Q)rm -R tmp/dist/$(PKG_NAME)-$(CFG_BUILD)
1616

1717
uninstall: dist-install-dir-$(CFG_BUILD)
1818
$(Q)sh tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(CFG_PREFIX)" --libdir="$(CFG_LIBDIR)" --mandir="$(CFG_MANDIR)"

0 commit comments

Comments
 (0)