rules.mk: Now not installing local.* anymore to BUILD_XXXDIR

This commit is contained in:
Jan Lindemann 2007-09-30 13:51:04 +00:00 committed by Jan Lindemann
commit 75b56759ee

View file

@ -264,7 +264,7 @@ $$(TOPDIR)/dir_build_$(1).done:
#$$(BUILD_$(1)DIR)/%: % $$(TOPDIR)/dir_build_$(1).done check_not_empty_$(1)MODE
$$(BUILD_$(1)DIR)/%: % $$(TOPDIR)/dir_build_$(1).done
@if [ ! $$< -ef $$@ ]; then \
@if [ ! $$< -ef $$@ -a "`echo $$< | sed 's/\..*//'`" != local ]; then \
echo install -m $($(1)MODE) $$< $$@ ;\
install -m $($(1)MODE) $$< $$@ ;\
fi