From: Joe Beda Date: Thu, 22 Jul 2010 07:14:44 +0000 (-0700) Subject: Install our copy of tornado into /usr/lib/bup/tornado. X-Git-Tag: bup-0.16~11 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=bup.git;a=commitdiff_plain;h=37b33c36b68e227c56a5f936d9a9d6a8a9701aad Install our copy of tornado into /usr/lib/bup/tornado. Signed-off-by: Joe Beda --- diff --git a/Makefile b/Makefile index d12fc39..dcc4bab 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ BINDIR=$(DESTDIR)/usr/bin LIBDIR=$(DESTDIR)/usr/lib/bup install: all $(INSTALL) -d $(MANDIR)/man1 $(DOCDIR) $(BINDIR) \ - $(LIBDIR)/bup $(LIBDIR)/cmd + $(LIBDIR)/bup $(LIBDIR)/cmd $(LIBDIR)/tornado [ ! -e Documentation/.docs-available ] || \ $(INSTALL) -o 0 -g 0 -m 0644 \ $(wildcard Documentation/*.1) \ @@ -49,7 +49,10 @@ install: all $(INSTALL) -o 0 -g 0 -m 0644 \ $(wildcard lib/bup/*.so lib/bup/*.py) \ $(LIBDIR)/bup - + $(INSTALL) -o 0 -g 0 -m 0644 \ + $(wildcard lib/tornado/*.py) \ + $(LIBDIR)/tornado + %/all: $(MAKE) -C $* all