Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 704856 | Differences between
and this patch

Collapse All | Expand All

(-)a/build/depends.py (-1 / +5 lines)
Lines 1304-1310 Link Here
1304
            'preferences/dialog/dlgprefvinyldlg.ui',
1304
            'preferences/dialog/dlgprefvinyldlg.ui',
1305
            'preferences/dialog/dlgprefwaveformdlg.ui',
1305
            'preferences/dialog/dlgprefwaveformdlg.ui',
1306
        ]
1306
        ]
1307
        map(Qt.uic(build), ui_files)
1307
1308
        # In Python 3.x, map() returns a "map object" (instead of a list),
1309
        # which is evaluated on-demand rather than at once. To invoke uic
1310
        # for all *.ui files at once, we need to cast it to a list here.
1311
        list(map(Qt.uic(build), ui_files))
1308
1312
1309
        if build.platform_is_windows:
1313
        if build.platform_is_windows:
1310
            # Add Windows resource file with icons and such
1314
            # Add Windows resource file with icons and such

Return to bug 704856