diff options
author | Eli Zaretskii <eliz@gnu.org> | 2000-05-08 15:13:30 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2000-05-08 15:13:30 +0000 |
commit | adae7401e7d9181895fe81bb098c1521499f87dd (patch) | |
tree | f0548d81a184535b9795bd925a034f60fb21912a | |
parent | b163bb08dc12abcceee54e5e3a466d8b97ffb8ef (diff) | |
download | gdb-adae7401e7d9181895fe81bb098c1521499f87dd.tar.gz |
* djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
with the version name.
-rwxr-xr-x | djunpack.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/djunpack.bat b/djunpack.bat index 1a9e4aa197f..f09f5ed3251 100755 --- a/djunpack.bat +++ b/djunpack.bat @@ -31,7 +31,7 @@ Rem an empty fnchange.tmp even if the command failed for some reason. copy fnchange.tmp junk.tmp > nul
if not exist junk.tmp GoTo NoDjTar
del junk.tmp
-sed -e 's,^,%GDBVER%,' -e 's, *, %GDBVER%,' < fnchange.tmp > fnchange.lst
+sed -e 's,@V@,%GDBVER%,g' < fnchange.tmp > fnchange.lst
Rem See the comment above about the reason for using COPY.
copy fnchange.lst junk.tmp > nul
if not exist junk.tmp GoTo NoSed
|