VirtualBox

Changeset 58508 in vbox for trunk


Ignore:
Timestamp:
Oct 30, 2015 12:09:18 AM (9 years ago)
Author:
vboxsync
Message:

BaseTools/Source/Python/AutoGen/AutoGen.py: PlatformAutoGen::_GetPackageList: Drop the VBox specific changes that seems to have commented out during the merge with UDK2014.SP1. Not sure why this was done, no clues in the code, but since we seem to be able to build with the vanilla upstream code now, drop the unused modifications.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/AutoGen.py

    r58466 r58508  
    14841484    def _GetPackageList(self):
    14851485        if self._PackageList == None:
    1486             # VBox: The order of the package list is (or was) relevant to one or more
    1487             #       loops, so don't use set.update() but the slower manual updating.
    1488             #if False: # Original - undefined update order.
    14891486            self._PackageList = set()
    14901487            for La in self.LibraryAutoGenList:
     
    15001497                PkgSet.update(ModuleData.Packages)
    15011498            self._PackageList = list(self._PackageList) + list (PkgSet)
    1502             #else: # VBox - always update by appending new dependencies.
    1503             #    self._PackageList = []
    1504             #    for La in self.LibraryAutoGenList:
    1505             #        for DepPkg in La.DependentPackageList:
    1506             #            if DepPkg not in self._PackageList:
    1507             #                self._PackageList.append(DepPkg)
    1508             #    for Ma in self.ModuleAutoGenList:
    1509             #        for DepPkg in Ma.DependentPackageList:
    1510             #            if DepPkg not in self._PackageList:
    1511             #                self._PackageList.append(DepPkg)
    15121499        return self._PackageList
    15131500
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette