diff options
author | Steve Chamberlain <sac@cygnus> | 1992-03-02 22:22:59 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-03-02 22:22:59 +0000 |
commit | 76971f0da2260c069b0ae13740627dba1b39487b (patch) | |
tree | b2584c6a655cf348429122bec9c33f0f9383023d /ld/ebmon29k.sc-sh | |
parent | 4ef09e3613ecc3849c0008102fc3871324caf7fd (diff) | |
download | gdb-76971f0da2260c069b0ae13740627dba1b39487b.zip gdb-76971f0da2260c069b0ae13740627dba1b39487b.tar.gz gdb-76971f0da2260c069b0ae13740627dba1b39487b.tar.bz2 |
Modifed to care about semi colons again, newlines are ignored - sorry
Per.
Diffstat (limited to 'ld/ebmon29k.sc-sh')
-rwxr-xr-x | ld/ebmon29k.sc-sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/ebmon29k.sc-sh b/ld/ebmon29k.sc-sh index 1b0fa6d..62050ee 100755 --- a/ld/ebmon29k.sc-sh +++ b/ld/ebmon29k.sc-sh @@ -6,7 +6,7 @@ SECTIONS { .text ${RELOCATING+${TEXT_START_ADDR}} : { *(.text); - ${RELOCATING+_etext = .} + ${RELOCATING+_etext = .}; } data ${RELOCATING+0x80002000} : { @@ -21,7 +21,7 @@ SECTIONS { { *(COMMON) *(.bss); - ${RELOCATING+_end = .;} + ${RELOCATING+_end = .}; } } EOF |