Bug 1431902 - Remove spurious MOZ_SOURCE_REPO= after bug 1247162. r?build draft
authorMike Hommey <mh+mozilla@glandium.org>
Tue, 23 Jan 2018 09:12:22 +0900
changeset 723342 fa85502ff8a2562a34b608ca34f3c2c37c15af05
parent 723224 20e194b34185de3009453b87f637daa5f432f74b
child 746836 03cfe5e7dd7d95bbe38390d426c10521e48184ae
push id96402
push userbmo:mh+mozilla@glandium.org
push dateTue, 23 Jan 2018 00:12:42 +0000
reviewersbuild
bugs1431902, 1247162
milestone60.0a1
Bug 1431902 - Remove spurious MOZ_SOURCE_REPO= after bug 1247162. r?build
toolkit/mozapps/installer/packager.mk
--- a/toolkit/mozapps/installer/packager.mk
+++ b/toolkit/mozapps/installer/packager.mk
@@ -114,17 +114,17 @@ ifdef MOZ_INCLUDE_SOURCE_INFO
 	@awk '$$2 == "MOZ_SOURCE_URL" {print $$3}' $(DEPTH)/source-repo.h >> $(MOZ_SOURCESTAMP_FILE)
 endif
 
 .PHONY: make-buildinfo-file
 make-buildinfo-file:
 	$(PYTHON) $(MOZILLA_DIR)/toolkit/mozapps/installer/informulate.py \
 		$(MOZ_BUILDINFO_FILE) \
 		BUILDID=$(BUILDID) \
-		$(addprefix MOZ_SOURCE_REPO=,MOZ_SOURCE_REPO=$(shell awk '$$2 == "MOZ_SOURCE_REPO" {print $$3}' $(DEPTH)/source-repo.h)) \
+		$(addprefix MOZ_SOURCE_REPO=,$(shell awk '$$2 == "MOZ_SOURCE_REPO" {print $$3}' $(DEPTH)/source-repo.h)) \
 		MOZ_SOURCE_STAMP=$(shell awk '$$2 == "MOZ_SOURCE_STAMP" {print $$3}' $(DEPTH)/source-repo.h) \
 		MOZ_PKG_PLATFORM=$(MOZ_PKG_PLATFORM)
 	echo "buildID=$(BUILDID)" > $(MOZ_BUILDID_INFO_TXT_FILE)
 
 .PHONY: make-mozinfo-file
 make-mozinfo-file:
 	cp $(DEPTH)/mozinfo.json $(MOZ_MOZINFO_FILE)