From: Avery Pennarun Date: Sat, 4 Sep 2010 23:33:25 +0000 (-0700) Subject: Don't forget to install _helpers.dll on cygwin. X-Git-Tag: bup-0.17a~1 X-Git-Url: https://arthur.barton.de/gitweb/?p=bup.git;a=commitdiff_plain;h=c2bc8a22b16921dbf382a3756d704ccab763e96d Don't forget to install _helpers.dll on cygwin. We were installing *.so, but not *$(SOEXT) like we should have. Now we do, which should fix some cygwin install problems reported by David Roda. Also, when installing *.so and *.dll files, make them 0755 instead of 0644, also to prevent permissions problems on cygwin, also reported by David Roda. Signed-off-by: Avery Pennarun --- diff --git a/Makefile b/Makefile index 7f38c7f..531afec 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,10 @@ install: all $(wildcard cmd/bup-*) \ $(LIBDIR)/cmd $(INSTALL) -m 0644 \ - $(wildcard lib/bup/*.so lib/bup/*.py) \ + $(wildcard lib/bup/*.py) \ + $(LIBDIR)/bup + $(INSTALL) -m 0755 \ + $(wildcard lib/bup/*$(SOEXT)) \ $(LIBDIR)/bup $(INSTALL) -m 0644 \ $(wildcard lib/tornado/*.py) \