diff options
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -55,7 +55,7 @@ install_files += $(addprefix $(DESTDIR)$(bindir)/,$(progs)) \ $(addprefix $(DESTDIR)$(mandir)/man6/,$(filter %.6,$(mans))) \ $(addprefix $(DESTDIR)$(mandir)/man7/,$(filter %.7,$(mans))) \ $(addprefix $(DESTDIR)$(mandir)/man8/,$(filter %.8,$(mans))) -clean_files += $(patsubst %.in,%,$(copy_files)) $(copy_files) $(mans) $(wildcard *.pot *.ugly*) +clean_files += $(patsubst %.in,%,$(copy_files) $(wildcard *.in)) $(copy_files) $(mans) $(wildcard *.pot *.ugly*) pots += $(filter-out $(no-pots) ,$(sort $(progs) $(libexecs) $(libs))) pot_files += $(addsuffix .pot,$(pots)) @@ -97,11 +97,10 @@ $(sort $(_do_patch)): %: %.ugly Makefile # $(devtoolsdir)/%.in -> %.in -> % %: %.in @echo 'EDIT < $< > $@'; $(edit) <"$<" >"$@" - $(if $(filter-out %.sh,$@),chmod 755 "$@") + $(if $(filter $@,$(progs) $(libexecs)),chmod 755 "$@") # work-around for what I currently believe to be a regression in Make %.sh: %.sh.in @echo 'EDIT < $< > $@'; $(edit) <"$<" >"$@" - $(if $(filter-out %.sh,$@),chmod 755 "$@") # Build ######################################################################## |