Removed redundant /proc and /dev skip on the installed files find command.
This commit is contained in:
parent
75c1211939
commit
6dfed89e68
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||||
|
|
Reference in a new issue