bug 1255485 - Remove NSDISTMODE=copy support from config.mk. r=nalexander draft
authorTed Mielczarek <ted@mielczarek.org>
Wed, 22 Nov 2017 15:31:01 -0500
changeset 721545 161dc0fe77164e811866581586b3032424838c41
parent 721544 2ca4811a2c9b52ccceebcb9004725bb7fe100151
child 721546 9a66832e441ca76bfb2b9d3eb9ae814423e42d44
push id95865
push userbmo:ted@mielczarek.org
push dateWed, 17 Jan 2018 12:23:10 +0000
reviewersnalexander
bugs1255485
milestone59.0a1
bug 1255485 - Remove NSDISTMODE=copy support from config.mk. r=nalexander MozReview-Commit-ID: L5Pe4NexbJD
config/config.mk
--- a/config/config.mk
+++ b/config/config.mk
@@ -323,17 +323,17 @@ endif # WINNT
 
 ifeq (,$(CROSS_COMPILE)$(filter-out WINNT, $(OS_ARCH)))
 INSTALL = $(NSINSTALL) -t
 
 else
 
 # This isn't laid out as conditional directives so that NSDISTMODE can be
 # target-specific.
-INSTALL         = $(if $(filter copy, $(NSDISTMODE)), $(NSINSTALL) -t, $(if $(filter absolute_symlink, $(NSDISTMODE)), $(NSINSTALL) -L $(PWD), $(NSINSTALL) -R))
+INSTALL         = $(if $(filter absolute_symlink, $(NSDISTMODE)), $(NSINSTALL) -L $(PWD), $(NSINSTALL) -R)
 
 endif # WINNT
 
 # The default for install_cmd is simply INSTALL
 install_cmd ?= $(INSTALL) $(1)
 
 # Use nsinstall in copy mode to install files on the system
 SYSINSTALL	= $(NSINSTALL) -t