about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarkus Unterwaditzer <markus@unterwaditzer.net>2015-12-07 00:20:35 +0100
committerMarkus Unterwaditzer <markus@unterwaditzer.net>2015-12-07 00:20:35 +0100
commit9002600486b484cdd859b8af82e4cc0530b62d94 (patch)
tree2252554b1ba607382a417214d302337eb06a148f
parent64c21f9ee2c6a7e6a530d4bb889676c296e1fe68 (diff)
downloadrust-9002600486b484cdd859b8af82e4cc0530b62d94.tar.gz
rust-9002600486b484cdd859b8af82e4cc0530b62d94.zip
Fix typo in make var
-rw-r--r--mk/install.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/mk/install.mk b/mk/install.mk
index 8b8170220c9..af6f3ff6ad2 100644
--- a/mk/install.mk
+++ b/mk/install.mk
@@ -8,7 +8,7 @@
 # option. This file may not be copied, modified, or distributed
 # except according to those terms.
 
-RUN_INSALLER = cd tmp/empty_dir && \
+RUN_INSTALLER = cd tmp/empty_dir && \
 	sh ../../tmp/dist/$(1)/install.sh \
 		--prefix="$(DESTDIR)$(CFG_PREFIX)" \
 		--libdir="$(DESTDIR)$(CFG_LIBDIR)" \
@@ -22,11 +22,11 @@ else
 	$(Q)$(MAKE) prepare_install
 endif
 ifeq ($(CFG_DISABLE_DOCS),)
-	$(Q)$(call RUN_INSALLER,$(DOC_PKG_NAME)-$(CFG_BUILD)) --disable-ldconfig
+	$(Q)$(call RUN_INSTALLER,$(DOC_PKG_NAME)-$(CFG_BUILD)) --disable-ldconfig
 endif
 	$(Q)$(foreach target,$(CFG_TARGET),\
-	  ($(call RUN_INSALLER,$(STD_PKG_NAME)-$(target)) --disable-ldconfig);)
-	$(Q)$(call RUN_INSALLER,$(PKG_NAME)-$(CFG_BUILD))
+	  ($(call RUN_INSTALLER,$(STD_PKG_NAME)-$(target)) --disable-ldconfig);)
+	$(Q)$(call RUN_INSTALLER,$(PKG_NAME)-$(CFG_BUILD))
 # Remove tmp files because it's a decent amount of disk space
 	$(Q)rm -R tmp/dist
 
@@ -40,11 +40,11 @@ else
 	$(Q)$(MAKE) prepare_uninstall
 endif
 ifeq ($(CFG_DISABLE_DOCS),)
-	$(Q)$(call RUN_INSALLER,$(DOC_PKG_NAME)-$(CFG_BUILD)) --uninstall
+	$(Q)$(call RUN_INSTALLER,$(DOC_PKG_NAME)-$(CFG_BUILD)) --uninstall
 endif
-	$(Q)$(call RUN_INSALLER,$(PKG_NAME)-$(CFG_BUILD)) --uninstall
+	$(Q)$(call RUN_INSTALLER,$(PKG_NAME)-$(CFG_BUILD)) --uninstall
 	$(Q)$(foreach target,$(CFG_TARGET),\
-	  ($(call RUN_INSALLER,$(STD_PKG_NAME)-$(target)) --uninstall);)
+	  ($(call RUN_INSTALLER,$(STD_PKG_NAME)-$(target)) --uninstall);)
 # Remove tmp files because it's a decent amount of disk space
 	$(Q)rm -R tmp/dist