Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] Fix VCS folders not being excluded from rootfs
@ 2015-12-30 22:46 Nathan Ford
  2015-12-31  9:36 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Nathan Ford @ 2015-12-30 22:46 UTC (permalink / raw)
  To: buildroot

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

Signed-off-by: Nathan Ford <nford@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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-12-31  9:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-30 22:46 [Buildroot] [PATCH 1/1] Fix VCS folders not being excluded from rootfs Nathan Ford
2015-12-31  9:36 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox