Skip to content

Commit 8951b38

Browse files
committed
Auto merge of #30246 - untitaker:insaller, r=alexcrichton
None
2 parents 6f95ae6 + 9002600 commit 8951b38

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

mk/install.mk

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# option. This file may not be copied, modified, or distributed
99
# except according to those terms.
1010

11-
RUN_INSALLER = cd tmp/empty_dir && \
11+
RUN_INSTALLER = cd tmp/empty_dir && \
1212
sh ../../tmp/dist/$(1)/install.sh \
1313
--prefix="$(DESTDIR)$(CFG_PREFIX)" \
1414
--libdir="$(DESTDIR)$(CFG_LIBDIR)" \
@@ -22,11 +22,11 @@ else
2222
$(Q)$(MAKE) prepare_install
2323
endif
2424
ifeq ($(CFG_DISABLE_DOCS),)
25-
$(Q)$(call RUN_INSALLER,$(DOC_PKG_NAME)-$(CFG_BUILD)) --disable-ldconfig
25+
$(Q)$(call RUN_INSTALLER,$(DOC_PKG_NAME)-$(CFG_BUILD)) --disable-ldconfig
2626
endif
2727
$(Q)$(foreach target,$(CFG_TARGET),\
28-
($(call RUN_INSALLER,$(STD_PKG_NAME)-$(target)) --disable-ldconfig);)
29-
$(Q)$(call RUN_INSALLER,$(PKG_NAME)-$(CFG_BUILD))
28+
($(call RUN_INSTALLER,$(STD_PKG_NAME)-$(target)) --disable-ldconfig);)
29+
$(Q)$(call RUN_INSTALLER,$(PKG_NAME)-$(CFG_BUILD))
3030
# Remove tmp files because it's a decent amount of disk space
3131
$(Q)rm -R tmp/dist
3232

@@ -40,11 +40,11 @@ else
4040
$(Q)$(MAKE) prepare_uninstall
4141
endif
4242
ifeq ($(CFG_DISABLE_DOCS),)
43-
$(Q)$(call RUN_INSALLER,$(DOC_PKG_NAME)-$(CFG_BUILD)) --uninstall
43+
$(Q)$(call RUN_INSTALLER,$(DOC_PKG_NAME)-$(CFG_BUILD)) --uninstall
4444
endif
45-
$(Q)$(call RUN_INSALLER,$(PKG_NAME)-$(CFG_BUILD)) --uninstall
45+
$(Q)$(call RUN_INSTALLER,$(PKG_NAME)-$(CFG_BUILD)) --uninstall
4646
$(Q)$(foreach target,$(CFG_TARGET),\
47-
($(call RUN_INSALLER,$(STD_PKG_NAME)-$(target)) --uninstall);)
47+
($(call RUN_INSTALLER,$(STD_PKG_NAME)-$(target)) --uninstall);)
4848
# Remove tmp files because it's a decent amount of disk space
4949
$(Q)rm -R tmp/dist
5050

0 commit comments

Comments
 (0)