From 6dfed89e68c0d8bfdc016313952a8270557e73eb Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Sat, 19 May 2007 20:46:36 +0000 Subject: [PATCH] Removed redundant /proc and /dev skip on the installed files find command. --- common/makefile-functions | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/makefile-functions b/common/makefile-functions index e18a1c4..8016659 100644 --- a/common/makefile-functions +++ b/common/makefile-functions @@ -116,8 +116,7 @@ define touch_timestamp endef define log_new_files - @find / -xdev ! -path "/$(SCRIPT_ROOT)/*" ! -path "/proc/*" \ - ! -path "/tmp/*" ! -path "/dev/*" ! -path "$(SRC)/*" \ + @find / -xdev ! -path "/$(SCRIPT_ROOT)/*" ! -path "/tmp/*" ! -path "$(SRC)/*" \ -newer $(SRC)/timestamp-marker -not -type d \ -fprintf $(crFILELOGDIR)/$(1) "%p\t%s\t%u:%g\t%m\t%l\n" || true endef