]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
ESL-111 Fix esl/python/Makefile to create install directory
authorArtur Kraev <ravenox@gmail.com>
Tue, 27 Oct 2015 22:30:01 +0000 (01:30 +0300)
committerArtur Kraev <ravenox@gmail.com>
Thu, 29 Oct 2015 20:27:54 +0000 (23:27 +0300)
This need when using make install DESTDIR=...

libs/esl/python/Makefile

index eeeb2bdea79aca1a5370df8ff7c5fb5b128ff86e..347d90a0248d2ee69fb1e7a471b7e54f8aa4ae19 100644 (file)
@@ -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)