diff options
-rw-r--r-- | system/updater/app/moz.build | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/system/updater/app/moz.build b/system/updater/app/moz.build index 32bfac2b3..30ba3777c 100644 --- a/system/updater/app/moz.build +++ b/system/updater/app/moz.build @@ -52,6 +52,8 @@ elif 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']: CXXFLAGS += CONFIG['TK_CFLAGS'] OS_LIBS += CONFIG['TK_LIBS'] + SOURCES += 'progressui_gtk.cpp' + if CONFIG['MOZ_VERIFY_MAR_SIGNATURE']: USE_LIBS += [ 'nss', @@ -59,6 +61,8 @@ elif 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']: ] OS_LIBS += CONFIG['NSPR_LIBS'] + + FINAL_TARGET_FILES.icons += ['updater.png'] else: SOURCES += ['progressui_null.cpp'] @@ -93,9 +97,6 @@ DISABLE_STL_WRAPPING = True CXXFLAGS += CONFIG['MOZ_BZ2_CFLAGS'] -if 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']: - FINAL_TARGET_FILES.icons += ['updater.png'] - # ============================================================================= GENERATED_FILES = [ |