summaryrefslogtreecommitdiff
path: root/Makefile.src.in
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2007-02-22 00:33:39 +0000
committerglx <glx@openttd.org>2007-02-22 00:33:39 +0000
commitfba80dccbe8fa43470b67d1b35528ed7912da559 (patch)
tree63cfb52552802129a1bded7254c4cdbd2e616391 /Makefile.src.in
parent8b6d07cb8583a9bf7bef176da942bd469ea88485 (diff)
downloadopenttd-fba80dccbe8fa43470b67d1b35528ed7912da559.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.
Diffstat (limited to 'Makefile.src.in')
-rw-r--r--Makefile.src.in2
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