From a25d31e192ccaf21527cfbb3a55c66c45f8421e9 Mon Sep 17 00:00:00 2001 From: Benjamin Stover Date: Wed, 4 May 2011 11:40:12 -0700 Subject: [PATCH] Bug 654752 - Make runtests.py work out of the box with Fennec [r=ctalbert] --- build/binary-location.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/binary-location.mk b/build/binary-location.mk index 81e46f3d7bd..aae6c249383 100644 --- a/build/binary-location.mk +++ b/build/binary-location.mk @@ -40,8 +40,12 @@ ifneq (,$(filter OS2 WINNT,$(OS_ARCH))) PROGRAM = $(MOZ_APP_NAME)$(BIN_SUFFIX) else +ifeq ($(MOZ_BUILD_APP),mobile) +PROGRAM = $(MOZ_APP_NAME)$(BIN_SUFFIX) +else PROGRAM = $(MOZ_APP_NAME)-bin$(BIN_SUFFIX) endif +endif TARGET_DIST = $(TARGET_DEPTH)/dist