diff options
author | glx <glx@openttd.org> | 2007-02-22 00:33:39 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2007-02-22 00:33:39 +0000 |
commit | 56c38973ec0be4824bc648af8d0b8f2d3a192ece (patch) | |
tree | 63cfb52552802129a1bded7254c4cdbd2e616391 | |
parent | f2d63dcecf5975b1817858e044e9044f21a4cc41 (diff) | |
download | openttd-56c38973ec0be4824bc648af8d0b8f2d3a192ece.tar.xz |
(svn r8839) -Fix: escape slashes in sed for mingw Makefile.dep stuff. It worked with sed 3.02 (provided by msys) but sed 4.1.4 (from gnuwin32.sf.net) failed.
-rw-r--r-- | Makefile.src.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.src.in b/Makefile.src.in index a6a1b57a3..494776061 100644 --- a/Makefile.src.in +++ b/Makefile.src.in @@ -160,7 +160,7 @@ endif # Convert x:/... paths to /x/... for mingw ifeq ($(OS), MINGW) - @cat Makefile.dep.tmp | sed 's@\([a-zA-Z]\):/@/\1/@g' > Makefile.dep.tmp.mingw + @cat Makefile.dep.tmp | sed 's@\([a-zA-Z]\):\/@\/\1\/@g' > Makefile.dep.tmp.mingw @cp Makefile.dep.tmp.mingw Makefile.dep.tmp @rm -f Makefile.dep.tmp.mingw endif |