aboutsummaryrefslogtreecommitdiff
path: root/libxcb
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2013-12-21 15:01:56 +0100
committermarha <marha@users.sourceforge.net>2013-12-21 15:01:56 +0100
commit5567cf1befbda64f2dc6fae1d337567cd984b46e (patch)
tree5f79da53f86560a9775875919f4f37a6563165a2 /libxcb
parentac104bfcd88032e9378e1046bf75870d311aea8c (diff)
downloadvcxsrv-5567cf1befbda64f2dc6fae1d337567cd984b46e.tar.gz
vcxsrv-5567cf1befbda64f2dc6fae1d337567cd984b46e.tar.bz2
vcxsrv-5567cf1befbda64f2dc6fae1d337567cd984b46e.zip
Use forward slashes to solve problem when using cygwin python
Diffstat (limited to 'libxcb')
-rw-r--r--libxcb/src/makefile.srcs8
1 files changed, 4 insertions, 4 deletions
diff --git a/libxcb/src/makefile.srcs b/libxcb/src/makefile.srcs
index d91835aeb..0dc043ece 100644
--- a/libxcb/src/makefile.srcs
+++ b/libxcb/src/makefile.srcs
@@ -2,14 +2,14 @@ ifneq ($(NORELDBG),1)
$(error NORELDBG should have been set to 1)
endif
-XCBPROTO_XCBPYTHONDIR = ..\xcb-proto
-XCBPROTO_XCBINCLUDEDIR = ..\xcb-proto\src
+XCBPROTO_XCBPYTHONDIR = ../xcb-proto
+XCBPROTO_XCBINCLUDEDIR = ../xcb-proto/src
%.h: $(XCBPROTO_XCBINCLUDEDIR)\%.xml
- python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $<
+ python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<)
%.c: $(XCBPROTO_XCBINCLUDEDIR)\%.xml
- python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $<
+ python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<)
CLEANRULEPOSTFIX=noobjs