Removed redundant /proc and /dev skip on the installed files find command.

This commit is contained in:
Manuel Canales Esparcia 2007-05-19 20:46:36 +00:00
parent 75c1211939
commit 6dfed89e68

View file

@ -116,8 +116,7 @@ define touch_timestamp
endef endef
define log_new_files define log_new_files
@find / -xdev ! -path "/$(SCRIPT_ROOT)/*" ! -path "/proc/*" \ @find / -xdev ! -path "/$(SCRIPT_ROOT)/*" ! -path "/tmp/*" ! -path "$(SRC)/*" \
! -path "/tmp/*" ! -path "/dev/*" ! -path "$(SRC)/*" \
-newer $(SRC)/timestamp-marker -not -type d \ -newer $(SRC)/timestamp-marker -not -type d \
-fprintf $(crFILELOGDIR)/$(1) "%p\t%s\t%u:%g\t%m\t%l\n" || true -fprintf $(crFILELOGDIR)/$(1) "%p\t%s\t%u:%g\t%m\t%l\n" || true
endef endef