Commit a51da3a8 authored by Sylvestre Ledru's avatar Sylvestre Ledru
Browse files

no bug - Removed unnecessary nesting r=firefox-build-system-reviewers,ahochheiden DONTBUILD

parent 359138a0
Loading
Loading
Loading
Loading
+11 −19
Original line number Diff line number Diff line
@@ -3,27 +3,19 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

ifndef MOZ_PKG_FORMAT
    ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
    ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
        MOZ_PKG_FORMAT = DMG
    else
        ifeq (WINNT,$(OS_ARCH))
    else ifeq ($(OS_ARCH),WINNT)
        MOZ_PKG_FORMAT = ZIP
        else
            ifeq (SunOS,$(OS_ARCH))
    else ifeq ($(OS_ARCH),SunOS)
        MOZ_PKG_FORMAT = BZ2
            else
                ifeq (gtk,$(MOZ_WIDGET_TOOLKIT))
    else ifeq ($(MOZ_WIDGET_TOOLKIT),gtk)
        MOZ_PKG_FORMAT = BZ2
                else
                    ifeq (android,$(MOZ_WIDGET_TOOLKIT))
    else ifeq ($(MOZ_WIDGET_TOOLKIT),android)
        MOZ_PKG_FORMAT = APK
    else
        MOZ_PKG_FORMAT = TGZ
    endif
                endif
            endif
        endif
    endif
endif # MOZ_PKG_FORMAT

ifeq ($(OS_ARCH),WINNT)