aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2008-02-13 19:54:57 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2008-02-13 19:54:57 +0000
commitf60b9310c4d511eb90b63c4cf6fe6be8cd870b57 (patch)
tree55433d8475476d195dc33e38055f12759883316d
parent94602699a4e0cad84935a7b284f0fc0aac6985d8 (diff)
Handle files which have vanished. Don't make git abort in this case.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@161 83718e91-0e4f-0410-abf4-91180603181f
-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..." && \