diff options
author | Matt A. Tobin <email@mattatobin.com> | 2022-02-15 04:34:51 -0600 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-03-21 13:22:41 +0000 |
commit | a4a4d106b909763dbb61f5af065ef1f39f46e9ff (patch) | |
tree | 8ce9299b833bcd4968efab80939d5a107c89d7e7 /system | |
parent | 3ce1f91579869435622ee811698a21a1e4a1950b (diff) | |
download | aura-central-a4a4d106b909763dbb61f5af065ef1f39f46e9ff.tar.gz |
Issue %17 - Actually build the progressui when not-Windows
Also, don't have a redundant conditional for the updater icon.
Diffstat (limited to 'system')
-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..aa4dcfa68 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 = [ |