2 Build everything static
3 --- procps-3.2.7.orig/proc/module.mk Thu Sep 23 13:10:20 2004
4 +++ procps-3.2.7/proc/module.mk Tue May 22 14:32:45 2007
6 # numbers for future use, the ELF soname can be set equal to the
7 # file name until some future date when a stable ABI is declared.
12 # for lib$(NAME).so and /usr/include/($NAME) and such
14 @@ -96,7 +96,8 @@ endif
15 #################### install rules ###########################
17 $(lib)$(SOFILE) : proc/$(SONAME)
18 - $(install) --mode a=rx $< $@
20 + install -c -m 555 $< $@
22 ifneq ($(SOLINK),$(SOFILE))
23 .PHONY: $(lib)$(SOLINK)
24 @@ -115,7 +116,8 @@ ldconfig : $(lib)$(SONAME) $(lib)$(SOLIN
27 $(usr/lib)$(ANAME) : proc/$(ANAME)
28 - $(install) --mode a=r $< $@
30 + install -c -m 444 $< $@
32 # Junk anyway... supposed to go in /usr/include/$(NAME)
33 #INSTALL += $(addprefix $(include),$(HDRFILES))