From: Artur Kraev Date: Tue, 27 Oct 2015 22:30:01 +0000 (+0300) Subject: ESL-111 Fix esl/python/Makefile to create install directory X-Git-Tag: v1.6.5~5^2~50^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54be6fc57369a71685aaad59f4605b29194cc8f2;p=thirdparty%2Ffreeswitch.git ESL-111 Fix esl/python/Makefile to create install directory This need when using make install DESTDIR=... --- 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)