From: Nathan Ford Date: Wed, 30 Dec 2015 22:46:04 +0000 (-0500) Subject: skeleton: fix VCS folders not being excluded from rootfs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f61257b40ff93a6a4ddd2e2ec4a62eedab52c855;p=buildroot.git skeleton: fix VCS folders not being excluded from rootfs There is a typo in skeleton.mk preventing rsync from excluding VCS folders such as .svn. Signed-off-by: Nathan Ford Signed-off-by: Thomas Petazzoni --- diff --git a/package/skeleton/skeleton.mk b/package/skeleton/skeleton.mk index 790afaf146..d640e247cb 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))