Commit f783d28d authored by Anton Midyukov's avatar Anton Midyukov

Revert "Do not rsync .gitignore to build directories"

This reverts commit 366cb49d. .gitignore is needed for packaging empty catalogs to the profile archive.
parent fc533420
......@@ -68,7 +68,7 @@ prep:
# - "rootfs@/": copy feature's rootfs parts into BUILDDIR toplevel
$(FEATURES):
@feat=$@; \
args="-qab --exclude .gitignore --exclude README --exclude config.mk"; \
args="-qab --exclude README --exclude config.mk"; \
args="$$args --exclude generate.mk --exclude generate.sh"; \
if [ -n "$(GLOBAL_DEBUG)" ]; then \
echo "** adding $$feat feature"; \
......
......@@ -42,7 +42,7 @@ profile/init: distclean
if [ -z $(QUIET) ]; then \
echo -n "$(TIME) initializing BUILDDIR: "; \
fi; \
rsync -qaxH --exclude .gitignore --delete-after image.in/ "$(BUILDDIR)"/; \
rsync -qaxH --delete-after image.in/ "$(BUILDDIR)"/; \
mkdir "$(BUILDDIR)"/.mki; \
} >&2
@$(call put,ifndef DISTCFG_MK)
......
......@@ -20,7 +20,7 @@ all:
else \
action="initialized"; \
fi; \
rsync -qa --exclude .gitignore "$$src/" "$(BUILDDIR)/$$dst/" && \
rsync -qa "$$src/" "$(BUILDDIR)/$$dst/" && \
mp-commit "$(BUILDDIR)/$$dst/" \
"$$dst subprofile $$action$${neq:+ (using $$src)}"; \
done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment