You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/04/28 05:31:32 UTC

[incubator-nuttx-apps] branch master updated: examples/unionfs: clean up the residual files after 'make distclean'

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new e8b5c47  examples/unionfs: clean up the residual files after 'make distclean'
e8b5c47 is described below

commit e8b5c47eb8891b78f901f3018662f34dd23a38ce
Author: liuhaitao <li...@xiaomi.com>
AuthorDate: Tue Apr 28 12:29:21 2020 +0800

    examples/unionfs: clean up the residual files after 'make distclean'
    
    Signed-off-by: liuhaitao <li...@xiaomi.com>
---
 examples/unionfs/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/unionfs/Makefile b/examples/unionfs/Makefile
index 85d93f4..97d4af5 100644
--- a/examples/unionfs/Makefile
+++ b/examples/unionfs/Makefile
@@ -72,7 +72,7 @@ context:: romfs_atestdir.h romfs_btestdir.h
 distclean::
 	$(call DELFILE, atestdir.img)
 	$(call DELFILE, btestdir.img)
-	$(call DELFILE, atestdir.h)
-	$(call DELFILE, btestdir.h)
+	$(call DELFILE, romfs_atestdir.h)
+	$(call DELFILE, romfs_btestdir.h)
 
 include $(APPDIR)/Application.mk