diff options
author | Jose <jose@zeroc.com> | 2015-05-15 10:02:33 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-05-15 10:02:33 +0200 |
commit | 831514b9e86b24b2251f4bf49b3bdad621283c26 (patch) | |
tree | bd80ccc15d407972a0c03cba0d72c523e59010c0 /python | |
parent | Remove config\makedepend.py no longer used (diff) | |
download | ice-831514b9e86b24b2251f4bf49b3bdad621283c26.tar.bz2 ice-831514b9e86b24b2251f4bf49b3bdad621283c26.tar.xz ice-831514b9e86b24b2251f4bf49b3bdad621283c26.zip |
Updates for windows mkdir usage
This avoid problems with git/cygwin mkdir being in PATH
Diffstat (limited to 'python')
-rw-r--r-- | python/Makefile.mak | 2 | ||||
-rw-r--r-- | python/python/Makefile.mak | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/Makefile.mak b/python/Makefile.mak index 052d2a10cf8..60d92e557a7 100644 --- a/python/Makefile.mak +++ b/python/Makefile.mak @@ -16,7 +16,7 @@ SUBDIRS = modules python test install:: install-common @if not exist "$(install_pythondir)" \ @echo "Creating $(install_pythondir)..." && \ - mkdir "$(install_pythondir)" + $(MKDIR) "$(install_pythondir)" $(EVERYTHING_EXCEPT_INSTALL):: @for %i in ( $(SUBDIRS) ) do \ diff --git a/python/python/Makefile.mak b/python/python/Makefile.mak index 13e4df20f60..8ed64078b9a 100644 --- a/python/python/Makefile.mak +++ b/python/python/Makefile.mak @@ -347,7 +347,7 @@ install:: $(ALL_SRCS) copy *.py "$(install_pythondir)" @for %i in ( $(PACKAGES) ) do \ @if not exist "$(install_pythondir)\%i" \ - mkdir "$(install_pythondir)\%i" + $(MKDIR) "$(install_pythondir)\%i" @for %i in ( $(PACKAGES) ) do \ copy %i\* "$(install_pythondir)\%i" |