about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-03-27 20:21:57 -0700
committerBrian Anderson <banderson@mozilla.com>2014-03-27 20:21:57 -0700
commit476f0e36f0cb53a10fc7e545c5306de52180bdf5 (patch)
treeb0ea14c771aa01c565c66d6de2c8a2678d6ec2e1
parent080d2104ff3b1637f919129bc40a99203a198a08 (diff)
downloadrust-476f0e36f0cb53a10fc7e545c5306de52180bdf5.tar.gz
rust-476f0e36f0cb53a10fc7e545c5306de52180bdf5.zip
mk: Fix syntax error in installation target
-rw-r--r--mk/install.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/install.mk b/mk/install.mk
index e360afe291b..b4688539ded 100644
--- a/mk/install.mk
+++ b/mk/install.mk
@@ -12,7 +12,7 @@
 install: dist-install-dir-$(CFG_BUILD)
 	$(Q)sh tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(CFG_PREFIX)" --libdir="$(CFG_LIBDIR)" --mandir="$(CFG_MANDIR)"
 # Remove tmp files while we can because they may have been created under sudo
-	$(Q)rm -R tmp/dist/$(PKG_NAME)-$(CFG_BUILD/
+	$(Q)rm -R tmp/dist/$(PKG_NAME)-$(CFG_BUILD)
 
 uninstall: dist-install-dir-$(CFG_BUILD)
 	$(Q)sh tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(CFG_PREFIX)" --libdir="$(CFG_LIBDIR)" --mandir="$(CFG_MANDIR)"