diff options
author | Eli Zaretskii <eliz@gnu.org> | 2009-03-27 13:37:09 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2009-03-27 13:37:09 +0000 |
commit | 47afba5fc1aaecdea7758e09d1670def39c405f9 (patch) | |
tree | 42594432dce406c9f8ad89c0aef450732a1228b1 | |
parent | ea882e87442529ff09a3382b23ab8f3594edc31d (diff) | |
download | gdb-47afba5fc1aaecdea7758e09d1670def39c405f9.zip gdb-47afba5fc1aaecdea7758e09d1670def39c405f9.tar.gz gdb-47afba5fc1aaecdea7758e09d1670def39c405f9.tar.bz2 |
* djunpack.bat: Use ".." quoting in Sed command, for the sake of
Windows builds of Sed.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | djunpack.bat | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2009-03-27 Eli Zaretskii <eliz@gnu.org> + + * djunpack.bat: Use ".." quoting in Sed command, for the sake of + Windows builds of Sed. + 2009-03-18 Tom Tromey <tromey@redhat.com> * configure: Rebuild. diff --git a/djunpack.bat b/djunpack.bat index f09f5ed..5c6e9b2 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,@V@,%GDBVER%,g' < 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
|