diff options
author | marha <marha@users.sourceforge.net> | 2013-12-21 15:01:56 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-12-21 15:01:56 +0100 |
commit | 5567cf1befbda64f2dc6fae1d337567cd984b46e (patch) | |
tree | 5f79da53f86560a9775875919f4f37a6563165a2 /libxcb | |
parent | ac104bfcd88032e9378e1046bf75870d311aea8c (diff) | |
download | vcxsrv-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.srcs | 8 |
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 |