Changes in tools/autotool.py [84176f3:4248ce5] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    r84176f3 r4248ce5  
    201201                target = "arm-helenos"
    202202
    203         if (config['PLATFORM'] == "arm64"):
    204                 platform = config['PLATFORM']
    205                 target = "aarch64-helenos"
    206 
    207203        if (config['PLATFORM'] == "ia32"):
    208204                platform = config['PLATFORM']
     
    637633
    638634                # Platform-specific utilities
    639                 if (config['BARCH'] in ('amd64', 'arm64', 'ia32', 'ppc32', 'sparc64')):
     635                if ((config['BARCH'] == "amd64") or (config['BARCH'] == "ia32") or (config['BARCH'] == "ppc32") or (config['BARCH'] == "sparc64")):
    640636                        common['GENISOIMAGE'] = check_app_alternatives(["genisoimage", "mkisofs", "xorriso"], ["--version"], "ISO 9660 creation utility", "usually part of genisoimage")
    641637                        if common['GENISOIMAGE'] == 'xorriso':
Note: See TracChangeset for help on using the changeset viewer.