better handle installation to another directory
authorBrandon Invergo <brandon@invergo.net>
Sun, 19 May 2013 13:40:25 +0000 (15:40 +0200)
committerBrandon Invergo <brandon@invergo.net>
Sun, 19 May 2013 13:40:25 +0000 (15:40 +0200)
Makefile.in

index bfcc257f7db7b872f6560ecbc3b10cf06584c030..baf89de8fb7c63cba21f0e62d685bad97b25d05c 100644 (file)
@@ -70,7 +70,11 @@ ifneq ($(VIRTUALENV),no)
 else
        $(PYTHON) $(srcdir)/setup.py install --prefix=$(DESTDIR)$(prefix)
 endif
-       $(INSTALL_DATA) $(srcdir)/Makefile $(DESTDIR)$(prefix)/Makefile
+       if [[ $(DESTDIR)$(prefix) != $(srcdir) ]]; then
+               $(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
 develop: installdirs
@@ -84,7 +88,11 @@ ifneq ($(VIRTUALENV),no)
 else
        $(PYTHON) $(srcdir)/setup.py develop --prefix=$(DESTDIR)$(prefix)
 endif
-       $(INSTALL_DATA) $(srcdir)/Makefile $(DESTDIR)$(prefix)/Makefile
+       if [[ $(DESTDIR)$(prefix) != $(srcdir) ]]; then
+               $(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