Skip to content

Commit

Permalink
Allow GECKO_OBJDIR to be overridden in local.mk, much like GECKO_PATH…
Browse files Browse the repository at this point in the history
…. This allows for a custom gecko location (e.g. a mozilla-central clone) to be used with gonk-ics as well.
  • Loading branch information
philikon committed Apr 27, 2012
1 parent 82b8398 commit 1605fa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -182,10 +182,10 @@ endif

KERNEL_DIR = boot/kernel-android-$(KERNEL)
ifeq (glue/gonk,$(GONK_BASE))
GECKO_OBJDIR = $(GECKO_PATH)/objdir-prof-gonk
GECKO_OBJDIR ?= $(GECKO_PATH)/objdir-prof-gonk
MOZCONFIG = $(abspath config/gecko-prof-gonk)
else
GECKO_OBJDIR = $(abspath objdir-gecko)
GECKO_OBJDIR ?= $(abspath objdir-gecko)
MOZCONFIG = $(abspath glue/gonk-ics/gonk-misc/default-gecko-config)
endif

Expand Down

0 comments on commit 1605fa0

Please sign in to comment.