aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2008-03-02 20:48:35 -0500
committerKevin O'Connor <kevin@koconnor.net>2008-03-02 20:48:35 -0500
commit410680bafec9643358dfb81c30e9e87f545b21db (patch)
tree29577c89f3cd26dbfaa4c576933cd5f76be6ac03 /tools
parentc65a3804a93eba39e84647d4510d0338a388c8ae (diff)
downloadseabios-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-xtools/defsyms.py2
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: