Hi!
While packaging ltp-full-20100228 I've found out that man files are installed
with executable bits and that's caused by INSTALL_MODE := 00775 that is pulled
from generic_leaf_target.mk that pulls in env_post.mk. Fixing explicitly 
INSTALL_MODE to 00644 in man.mk fixes this for me. Patch attached.

Signed-off-by: Cyril Hrubis [email protected]

-- 
Cyril Hrubis
[email protected]
Index: ltp-full-20100228/include/mk/man.mk
===================================================================
--- ltp-full-20100228.orig/include/mk/man.mk
+++ ltp-full-20100228/include/mk/man.mk
@@ -28,6 +28,8 @@ include $(top_srcdir)/include/mk/env_pre
 
 INSTALL_DIR	:= $(mandir)/man$(MANPREFIX)
 
+INSTALL_MODE    := 00644
+
 INSTALL_TARGETS	?= *.$(MANPREFIX)
 
 MAKE_TARGETS	:=
------------------------------------------------------------------------------
_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to