diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-23 15:36:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-23 15:36:00 +0000 |
commit | b340985b27d8a06fecee2f28307dc689f2eea5b4 (patch) | |
tree | 8532a4ff77f8d2d0338e3ec71305b30b0efc1771 /extra/scripts | |
parent | 72c3d34323756a765ba4c635abf997c2c2584489 (diff) |
Cleanup makefiles and make clean a bit
Diffstat (limited to 'extra/scripts')
-rwxr-xr-x | extra/scripts/initfini.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/scripts/initfini.awk b/extra/scripts/initfini.awk index 3f0bb5e26..818cfa26f 100755 --- a/extra/scripts/initfini.awk +++ b/extra/scripts/initfini.awk @@ -13,7 +13,7 @@ BEGIN \ omitcrti=0; omitcrtn=0; glb_idx = 0; - while(getline < "initfini.s") + while(getline < "initfini.S") { if(/\.endp/) {endp=1} if(/\.end/) {end=1} if(/\.align/) {alignval=$2} @@ -27,7 +27,7 @@ BEGIN \ } last = $1; } - close("initfini.s"); + close("initfini.S"); } # special rules for the SuperH targets (They do nothing on other targets) /SH_GLB_BEGINS/ && glb_idx==0 {omitcrti +=1} |