diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-10-29 12:00:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-10-29 12:00:28 +0000 |
commit | 4e4d12772baf4b0f0edf403866359490576d426e (patch) | |
tree | 0277c3c34d4793384ab689bfa49a8904036e69ff /extra | |
parent | 88daaa079e14f674b10be117ce0fd6925d45cc09 (diff) | |
download | uClibc-alpine-4e4d12772baf4b0f0edf403866359490576d426e.tar.bz2 uClibc-alpine-4e4d12772baf4b0f0edf403866359490576d426e.tar.xz |
For now, comment out the broken part
Diffstat (limited to 'extra')
-rwxr-xr-x | extra/scripts/initfini.awk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/extra/scripts/initfini.awk b/extra/scripts/initfini.awk index c70fb8cd4..2938fecce 100755 --- a/extra/scripts/initfini.awk +++ b/extra/scripts/initfini.awk @@ -19,12 +19,12 @@ BEGIN \ if(/\.align/) {alignval=$2} # here comes some special stuff for the SuperH targets # Search for all labels - if(/_GLOBAL_OFFSET_TABLE_/) { - sub (":","",last); - glb_label[glb_idx] = last; - glb_idx += 1; - glb = $0; - } +# if(/_GLOBAL_OFFSET_TABLE_/) { +# sub (":","",last); +# glb_label[glb_idx] = last; +# glb_idx += 1; +# glb = $0; +# } last = $1; } close("initfini.s"); |