diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-07-03 21:02:33 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-07-03 21:02:33 -0700 |
commit | c1f13fc80ff6cf4b1cef98cdd34d638a9251c89d (patch) | |
tree | 951e52f24326613d647a81126f8aea43d8979bbd /rdoff | |
parent | 1e5b102109356a96b3c81187101d3858989ebf59 (diff) | |
download | nasm-c1f13fc80ff6cf4b1cef98cdd34d638a9251c89d.tar.gz nasm-c1f13fc80ff6cf4b1cef98cdd34d638a9251c89d.tar.bz2 nasm-c1f13fc80ff6cf4b1cef98cdd34d638a9251c89d.zip |
Correct the legacy name rdf2ihx (as opposed to rdf2ith)
The more common acronym for Intel Hex seems to be "ith", but the
legacy utility was "rdf2ihx", so we allow both variants. However, the
Makefile rule was wrong.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'rdoff')
-rw-r--r-- | rdoff/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rdoff/Makefile.in b/rdoff/Makefile.in index 78483fa..ae78f12 100644 --- a/rdoff/Makefile.in +++ b/rdoff/Makefile.in @@ -61,7 +61,7 @@ rdf2com$(X): rdf2ith$(X): rm -f rdf2ith$(X) && $(LN_S) rdf2bin$(X) rdf2ith$(X) rdf2ihx$(X): - rm -f rdf2ihx$(X) && $(LN_S) rdf2bin$(X) rdf2ith$(X) + rm -f rdf2ihx$(X) && $(LN_S) rdf2bin$(X) rdf2ihx$(X) rdf2srec$(X): rm -f rdf2ihx$(X) && $(LN_S) rdf2bin$(X) rdf2srec$(X) |