better handle installation to another directory

This commit is contained in:
Brandon Invergo 2013-05-19 15:40:25 +02:00
parent dc85ee8cef
commit a09f66adac

View File

@ -70,7 +70,11 @@ ifneq ($(VIRTUALENV),no)
else else
$(PYTHON) $(srcdir)/setup.py install --prefix=$(DESTDIR)$(prefix) $(PYTHON) $(srcdir)/setup.py install --prefix=$(DESTDIR)$(prefix)
endif endif
if [[ $(DESTDIR)$(prefix) != $(srcdir) ]]; then
$(INSTALL_DATA) $(srcdir)/Makefile $(DESTDIR)$(prefix)/Makefile $(INSTALL_DATA) $(srcdir)/Makefile $(DESTDIR)$(prefix)/Makefile
$(INSTALL_DATA) $(srcdir)/lazycelery.sh $(DESTDIR)$(prefix)/lazycelery.sh
$(INSTALL_DATA) $(srcdir)/lazyserver.sh $(DESTDIR)$(prefix)/lazyserver.sh
fi
# The same as "install", except use the "develop" setup.py target # The same as "install", except use the "develop" setup.py target
develop: installdirs develop: installdirs
@ -84,7 +88,11 @@ ifneq ($(VIRTUALENV),no)
else else
$(PYTHON) $(srcdir)/setup.py develop --prefix=$(DESTDIR)$(prefix) $(PYTHON) $(srcdir)/setup.py develop --prefix=$(DESTDIR)$(prefix)
endif endif
if [[ $(DESTDIR)$(prefix) != $(srcdir) ]]; then
$(INSTALL_DATA) $(srcdir)/Makefile $(DESTDIR)$(prefix)/Makefile $(INSTALL_DATA) $(srcdir)/Makefile $(DESTDIR)$(prefix)/Makefile
$(INSTALL_DATA) $(srcdir)/lazycelery.sh $(DESTDIR)$(prefix)/lazycelery.sh
$(INSTALL_DATA) $(srcdir)/lazyserver.sh $(DESTDIR)$(prefix)/lazyserver.sh
fi
# setup.py doesn't (yet) support an uninstall command, so until it does, you # setup.py doesn't (yet) support an uninstall command, so until it does, you