Blob Blame History Raw
--- apps/py_sems/Makefile~	2009-04-07 23:48:00.725992047 +0400
+++ apps/py_sems/Makefile	2009-04-07 23:52:09.909991935 +0400
@@ -81,7 +81,7 @@
 .PHONY: install_python_files
 install_python_files: $(DESTDIR)$(modules-prefix)/$(modules-dir)
 	echo "Installing Python object files..."
-	for f in $(py_obj) ; do \
+	for f in $(py_src) $(py_obj) ; do \
 		if [ -n "py/$$f" ]; then \
 			$(INSTALL-TOUCH) $(DESTDIR)$(modules-prefix)/$(modules-dir)/$$f; \
 			$(INSTALL-MODULES) py/$$f $(DESTDIR)$(modules-prefix)/$(modules-dir)/$$f; \
--- apps/ivr/Makefile~	2009-04-08 08:30:00.788685533 +0400
+++ apps/ivr/Makefile	2009-04-08 08:31:48.349687025 +0400
@@ -92,7 +92,7 @@
 .PHONY: install_python_files
 install_python_files: $(DESTDIR)$(modules-prefix)/$(modules-dir)
 	echo "Installing Python object files..."
-	for f in $(py_obj) ; do \
+	for f in  $(py_src) $(py_obj) ; do \
 		if [ -n "py/$$f" ]; then \
 			$(INSTALL-TOUCH) $(DESTDIR)$(modules-prefix)/$(modules-dir)/$$f; \
 			$(INSTALL-MODULES) py/$$f $(DESTDIR)$(modules-prefix)/$(modules-dir)/$$f; \
--- apps/ivr/Makefile.ivr_application~	2008-08-20 17:23:41.000000000 +0400
+++ apps/ivr/Makefile.ivr_application	2009-04-08 08:32:38.509685952 +0400
@@ -41,8 +41,10 @@
 .PHONY: install
 install: all $(extra_install)
 	install -d $(DESTDIR)${BASEDIR}/${LIB_INSTALLDIR}
+	install -m ${LIB_PERMISSIONS}  *.py $(DESTDIR)${BASEDIR}/${LIB_INSTALLDIR}
 	install -m ${LIB_PERMISSIONS}  *.pyc $(DESTDIR)${BASEDIR}/${LIB_INSTALLDIR}
 	install -d $(DESTDIR)${BASEDIR}/${LIB_INSTALLDIR}/${LIBDIR}
+	install -m ${LIB_PERMISSIONS}  ${LIBDIR}/*.py $(DESTDIR)${BASEDIR}/${LIB_INSTALLDIR}/${LIBDIR}
 	install -m ${LIB_PERMISSIONS}  ${LIBDIR}/*.pyc $(DESTDIR)${BASEDIR}/${LIB_INSTALLDIR}/${LIBDIR}
 
 .PHONY: install-cfg