diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-03-02 20:48:35 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-03-02 20:48:35 -0500 |
commit | 410680bafec9643358dfb81c30e9e87f545b21db (patch) | |
tree | 29577c89f3cd26dbfaa4c576933cd5f76be6ac03 /tools | |
parent | c65a3804a93eba39e84647d4510d0338a388c8ae (diff) | |
download | seabios-410680bafec9643358dfb81c30e9e87f545b21db.tar.gz |
Apply workaround to allow compiling under Ubuntu.
Add make option "AVOIDCOMBINE" that prevent -combine from being used.
Ubuntu makes symbols non-global -- have defsyms.py pick them up anyway.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/defsyms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/defsyms.py b/tools/defsyms.py index 54d18b8b..e4b3215f 100755 --- a/tools/defsyms.py +++ b/tools/defsyms.py @@ -21,7 +21,7 @@ def main(): lines = sys.stdin.readlines() for line in lines: addr, type, sym = line.split() - if type not in 'TA': + if type not in 'Tt': # Only interested in global symbols in text segment continue for c in sym: |