Fix the chmod of the perl modules

perl modules (.pm) don't need executable bits...

Thanks to Patrick Mathhaei from debian for this.


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1090 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2008-06-08 09:50:50 +00:00
parent 91eefcf87b
commit d2aa281735
+1 -1
View File
@@ -75,7 +75,7 @@ clean:
modperl_install: create_install_dir
for i in *.pm; do \
install -m 0755 $$i $(DESTDIR)$(MODDIR); \
install -m 0644 $$i $(DESTDIR)$(MODDIR); \
done
-include $(wildcard .depend/*.dep)