blob: a05eec4ab676b42be6b0b066af19f23d7d0932ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
*** procps-3.2.5/Makefile.orig Sun Jul 24 03:29:32 2005
--- procps-3.2.5/Makefile Sun Jul 24 03:30:14 2005
***************
*** 211,220 ****
###### install
$(BINFILES) : all
! $(install) --mode a=rx $(notdir $@) $@
$(MANFILES) : all
! $(install) --mode a=r $(notdir $@) $@
install: $(filter-out $(SKIP) $(addprefix $(DESTDIR),$(SKIP)),$(INSTALL))
cd $(usr/bin) && $(ln_f) skill snice
--- 211,220 ----
###### install
$(BINFILES) : all
! $(install) -m 555 $(notdir $@) $@
$(MANFILES) : all
! $(install) -m 444 $(notdir $@) $@
install: $(filter-out $(SKIP) $(addprefix $(DESTDIR),$(SKIP)),$(INSTALL))
cd $(usr/bin) && $(ln_f) skill snice
|