summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2011-08-21 11:45:03 +0200
committerSebastian Reichel <sre@ring0.de>2011-08-21 11:45:03 +0200
commit97848e1b9cd94711aa339a4968d0e67f3ef25019 (patch)
treeda61fcf12ec98875a1185ba763d7bb71e9ecc8c2
parent3f5ae847224d70943a9fdebc1148db712b152ca9 (diff)
downloadisi-wireshark-plugin-97848e1b9cd94711aa339a4968d0e67f3ef25019.tar.bz2
do not install plugin with +x
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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