]> arthur.barton.de Git - bup.git/commitdiff
Don't forget to install _helpers.dll on cygwin.
authorAvery Pennarun <apenwarr@gmail.com>
Sat, 4 Sep 2010 23:33:25 +0000 (16:33 -0700)
committerAvery Pennarun <apenwarr@gmail.com>
Sat, 4 Sep 2010 23:34:50 +0000 (16:34 -0700)
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 <apenwarr@gmail.com>
Makefile

index 7f38c7fabf228dd686ac00003c9a65295b181175..531afecd49d122edf6ce0f3cb07d241c8611be17 100644 (file)
--- 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) \