[Buildroot] [PATCH 1/1] Fix VCS folders not being excluded from rootfs

Nathan Ford nford at westpond.com
Wed Dec 30 22:46:04 UTC 2015


There is a typo in skeleton.mk preventing rsync from excluding VCS
folders such as .svn

Signed-off-by: Nathan Ford <nford at westpond.com>
---
 package/skeleton/skeleton.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/skeleton/skeleton.mk b/package/skeleton/skeleton.mk
index 790afaf..d640e24 100644
--- a/package/skeleton/skeleton.mk
+++ b/package/skeleton/skeleton.mk
@@ -78,7 +78,7 @@ endef
 endif
 
 define SKELETON_INSTALL_TARGET_CMDS
-	rsync -a --ignore-times $(SYNC_VCS_EXCLUSIONS) \
+	rsync -a --ignore-times $(RSYNC_VCS_EXCLUSIONS) \
 		--chmod=u=rwX,go=rX --exclude .empty --exclude '*~' \
 		$(SKELETON_PATH)/ $(TARGET_DIR)/
 	$(call SKELETON_USR_SYMLINKS_OR_DIRS,$(TARGET_DIR))
-- 
1.7.9.5



More information about the buildroot mailing list