about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-01-28 14:32:38 -0800
committerBrian Anderson <banderson@mozilla.com>2012-01-28 14:32:38 -0800
commit2ca0b37321871c52be4e1256e4690d06df5a6b89 (patch)
tree2914ed3e308a2e28d2f8f2d6af10e88ee12a62c5
parenta831e7ce13aa19acf0f65e508097351f8dabca84 (diff)
downloadrust-2ca0b37321871c52be4e1256e4690d06df5a6b89.tar.gz
rust-2ca0b37321871c52be4e1256e4690d06df5a6b89.zip
build: Don't use -T option on install cmd. Not OS X compatible
-rw-r--r--mk/install.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/install.mk b/mk/install.mk
index 9a5ad5a6c9f..15a2665b0af 100644
--- a/mk/install.mk
+++ b/mk/install.mk
@@ -5,10 +5,10 @@
 # Installation macro. Call with source directory as arg 1,
 # destination directory as arg 2, and filename/libname-glob as arg 3
 ifdef VERBOSE
- INSTALL = install -m755 -T $(1)/$(3) $(2)/$(3)
+ INSTALL = install -m755 $(1)/$(3) $(2)/$(3)
  INSTALL_LIB = install -m644 `ls -rt1 $(1)/$(3) | tail -1` $(2)/
 else
- INSTALL = $(Q)$(call E, install: $(2)/$(3)) && install -m755 -T $(1)/$(3) $(2)/$(3)
+ INSTALL = $(Q)$(call E, install: $(2)/$(3)) && install -m755 $(1)/$(3) $(2)/$(3)
  INSTALL_LIB = $(Q)$(call E, install_lib: $(2)/$(3)) &&                    \
 	       install -m644 `ls -rt1 $(1)/$(3) | tail -1` $(2)/
 endif