diff options
author | Bernard Normier <bernard@zeroc.com> | 2019-07-15 18:09:24 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2019-07-15 18:09:24 -0400 |
commit | 9ad85427c2126e57772e8cc951803de6feda1c73 (patch) | |
tree | 1744c87536516cf51521fd4056bfd54fe1cd3f1f /python | |
parent | Fixed IcePy/macOS build errors caused by warnings (diff) | |
download | ice-9ad85427c2126e57772e8cc951803de6feda1c73.tar.bz2 ice-9ad85427c2126e57772e8cc951803de6feda1c73.tar.xz ice-9ad85427c2126e57772e8cc951803de6feda1c73.zip |
Create install dir with MKDIR
Diffstat (limited to 'python')
-rw-r--r-- | python/python/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/python/Makefile b/python/python/Makefile index e8bc84429ff..f5bb725a3af 100644 --- a/python/python/Makefile +++ b/python/python/Makefile @@ -33,7 +33,7 @@ install:: | $(DESTDIR)$(install_pythondir)/Ice $(Q)$(INSTALL) -m 644 Ice/__init__.py $(DESTDIR)$(install_pythondir)/Ice # Ice/Future requires python >= 3.5 ifeq ($(shell $(PYTHON) -c "print(1 if $(python-version) >= 3.5 else 0)"),1) - $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(install_pythondir)/Ice/Py3 + $(Q)$(MKDIR) -p -m 755 $(DESTDIR)$(install_pythondir)/Ice/Py3 $(Q)$(INSTALL) -m 644 Ice/Py3/IceFuture.py $(DESTDIR)$(install_pythondir)/Ice/Py3/ endif |