From 97848e1b9cd94711aa339a4968d0e67f3ef25019 Mon Sep 17 00:00:00 2001 From: Sebastian Reichel Date: Sun, 21 Aug 2011 11:45:03 +0200 Subject: [PATCH] do not install plugin with +x --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e454469..ffe9f0c 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,6 @@ clean: @rm -f isi.so $(OBJECTS) install: isi.so - install isi.so $(DESTDIR)${PREFIX}/${PLUGINDIR} + install -m 644 isi.so $(DESTDIR)${PREFIX}/${PLUGINDIR} .PHONEY: all clean install