Bug 1253431 part 5 - Remove build/unix/Makefile.in; r?gps draft
authorMike Shal <mshal@mozilla.com>
Thu, 21 Jan 2016 16:46:34 -0500
changeset 337042 a1bdcbf586ab5f3ab229f632ec84b19b19eca1ca
parent 337041 1e581787198eefb8ae688e885472ecb11e458639
child 337043 9e76ffb50b0b545c1b67dc31a25b3830a70f07a6
push id12257
push userbmo:mshal@mozilla.com
push dateFri, 04 Mar 2016 21:05:24 +0000
reviewersgps
bugs1253431
milestone47.0a1
Bug 1253431 part 5 - Remove build/unix/Makefile.in; r?gps MozReview-Commit-ID: 7FhprSrtqyt
build/unix/Makefile.in
build/unix/moz.build
deleted file mode 100644
--- a/build/unix/Makefile.in
+++ /dev/null
@@ -1,22 +0,0 @@
-# -*- makefile -*-
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-SDK_BINARY = run-mozilla.sh
-
-ifneq ($(LLVM_SYMBOLIZER),)
-# Install a copy of the llvm-symbolizer binary to dist/bin, so it can
-# be used for symbolizing traces for e.g. AddressSanitizer
-LLVMSYM_EXECUTABLES=$(LLVM_SYMBOLIZER)
-LLVMSYM_DEST=$(FINAL_TARGET)
-INSTALL_TARGETS += LLVMSYM
-endif
-
-include $(topsrcdir)/config/rules.mk
-
-libs:: $(srcdir)/run-mozilla.sh
-	$(INSTALL) $< $(DIST)/bin
-
-# EOF
--- a/build/unix/moz.build
+++ b/build/unix/moz.build
@@ -5,8 +5,18 @@
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 if CONFIG['MOZ_LIBSTDCXX_TARGET_VERSION'] or CONFIG['MOZ_LIBSTDCXX_HOST_VERSION']:
     DIRS += ['stdc++compat']
 
 if CONFIG['USE_ELF_HACK']:
     DIRS += ['elfhack']
 
+if CONFIG['LLVM_SYMBOLIZER']:
+    FINAL_TARGET_FILES += ['/' + CONFIG['LLVM_SYMBOLIZER']]
+
+SDK_FILES.bin += [
+    'run-mozilla.sh',
+]
+
+FINAL_TARGET_FILES += [
+    'run-mozilla.sh',
+]