ports/devel/ice/files/patch-python-python-Makefile
Michael Gmelin 4aff7c172a Update devel/ice, devel/py-ice and devel/php5-ice to 3.6.0
PR:		201143
Differential Revision:	https://reviews.freebsd.org/D2930
Reviewed by:	bapt
Approved by:	bapt
Tested by:	Roger Leigh <rleigh@codelibre.net>
2015-07-13 19:48:31 +00:00

16 lines
668 B
Text

--- python/python/Makefile.orig 2010-07-11 13:05:38.000000000 +1000
+++ python/python/Makefile 2012-09-11 00:09:09.000000000 +2000
@@ -118,10 +118,11 @@
install:: $(ALL_SRCS)
@echo "Installing generated code"
- $(INSTALL_DATA) *.py $(DESTDIR)$(install_pythondir)
+ $(INSTALL_DATA) *.py* $(DESTDIR)$(install_pythondir)
@for i in $(PACKAGES) ; \
do \
- $(INSTALL_DATA) -r $$i $(DESTDIR)$(install_pythondir) ; \
+ mkdir -p $(DESTDIR)$(install_pythondir)/$$i ; \
+ $(INSTALL_DATA) $$i/*.py* $(DESTDIR)$(install_pythondir)/$$i ; \
done
depend:: $(ICE_SLICE) $(GLACIER2_SLICE) $(ICEBOX_SLICE) $(ICEGRID_SLICE) $(ICEPATCH2_SLICE) $(ICESTORM_SLICE)