VirtualBox

Changeset 80956 in vbox


Ignore:
Timestamp:
Sep 23, 2019 6:00:23 PM (5 years ago)
Author:
vboxsync
Message:

build.py: fix the additional logging on Linux (where Command is just a string and not an array of strings)

File:
1 edited

Legend:

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

    r80721 r80956  
    210210        Command = ' '.join(Command)
    211211
    212     EdkLogger.info("Launching: '%s'; CWD=%s" % ("' '".join(Command), WorkingDir));
     212    if platform.system() != 'Windows':
     213        EdkLogger.info("Launching: '%s'; CWD=%s" % (Command, WorkingDir));
     214    else:
     215        EdkLogger.info("Launching: '%s'; CWD=%s" % ("' '".join(Command), WorkingDir));
    213216    Proc = None
    214217    EndOfProcedure = None
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