From 54be6fc57369a71685aaad59f4605b29194cc8f2 Mon Sep 17 00:00:00 2001 From: Artur Kraev Date: Wed, 28 Oct 2015 01:30:01 +0300 Subject: [PATCH] ESL-111 Fix esl/python/Makefile to create install directory This need when using make install DESTDIR=... --- libs/esl/python/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/esl/python/Makefile b/libs/esl/python/Makefile index eeeb2bdea7..347d90a024 100644 --- a/libs/esl/python/Makefile +++ b/libs/esl/python/Makefile @@ -14,6 +14,7 @@ _ESL.so: esl_wrap.o $(CXX) $(SOLINK) esl_wrap.o $(MYLIB) $(LOCAL_LDFLAGS) -o _ESL.so -L. $(LIBS) install: _ESL.so + mkdir -p $(SITE_DIR) install -m 755 _ESL.so $(SITE_DIR) install -m 755 ESL.py $(SITE_DIR)