aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/make.configuration.deps4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/make.configuration.deps b/src/make.configuration.deps
index 7bf0ebe..36c7809 100644
--- a/src/make.configuration.deps
+++ b/src/make.configuration.deps
@@ -281,10 +281,10 @@ $(TOP)/GIT-COMMIT-ID: $(TOP)/BUILD-ID $(TARBALL_DIR)/cactus-flesh-source.files $
echo "Formaline: Preparing git repository..." && \
$(GIT) rm --cached -r . > /dev/null 2>&1; \
echo "Formaline: Adding flesh to git repository..." && \
- cat $(TARBALL_DIR)/cactus-flesh-source.files | xargs $(GIT) add; \
+ cat $(TARBALL_DIR)/cactus-flesh-source.files | xargs -n 1 $(GIT) add; \
for thorn in $(notdir $(THORNS)); do \
echo "Formaline: Adding thorn $$thorn to git repository..." && \
- cat $(TARBALL_DIR)/cactus-thorn-source-$$thorn.files | xargs $(GIT) add; \
+ cat $(TARBALL_DIR)/cactus-thorn-source-$$thorn.files | xargs -n 1 $(GIT) add; \
done && \
true "Write source tree and create a commit" && \
echo "Formaline: Committing source tree to git repository..." && \