From: Peter Korsgaard Date: Sun, 30 Mar 2008 20:48:13 +0000 (-0000) Subject: Makefile: fix typo (.empty files, not dirs) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6a262b14ac3dd5aa2d14879b209ce613677326fa;p=buildroot.git Makefile: fix typo (.empty files, not dirs) --- diff --git a/Makefile b/Makefile index 31bd1ac769..3885d4deec 100644 --- a/Makefile +++ b/Makefile @@ -330,7 +330,7 @@ $(PROJECT_BUILD_DIR)/.root: fi -find $(TARGET_DIR) -type d -name CVS | xargs rm -rf -find $(TARGET_DIR) -type d -name .svn | xargs rm -rf - -find $(TARGET_DIR) -type d -name .empty | xargs rm -rf + -find $(TARGET_DIR) -type f -name .empty | xargs rm -rf touch $@ $(TARGET_DIR): $(PROJECT_BUILD_DIR)/.root