From 74ffbadd1c62addc104390bc0f3e79582bb4d265 Mon Sep 17 00:00:00 2001 From: Mark Finkle Date: Sat, 28 Nov 2015 12:52:22 -0500 Subject: [PATCH] Bug 1227997 - Make theme fallback actually work r=mossop --- toolkit/themes/moz.build | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/toolkit/themes/moz.build b/toolkit/themes/moz.build index 6d64d4aa52e..69b1ac61394 100644 --- a/toolkit/themes/moz.build +++ b/toolkit/themes/moz.build @@ -23,11 +23,8 @@ if toolkit == 'cocoa': DIRS += ['osx'] elif toolkit in ('gtk2', 'gtk3', 'qt'): DIRS += ['linux'] -elif app == 'mobile/android': - if CONFIG['NIGHTLY_BUILD']: - DIRS += ['mobile'] - else: - DIRS += ['windows'] +elif app == 'mobile/android' and CONFIG['NIGHTLY_BUILD']: + DIRS += ['mobile'] else: DIRS += ['windows']