From 6526c01af43aa89fbc4673e7dd212fa1c3fe6ed1 Mon Sep 17 00:00:00 2001 From: eschnett Date: Sun, 19 Dec 2010 06:10:50 +0000 Subject: Correct syntax error git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@199 83718e91-0e4f-0410-abf4-91180603181f --- src/make.configuration.deps | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/make.configuration.deps b/src/make.configuration.deps index db56e64..422d940 100644 --- a/src/make.configuration.deps +++ b/src/make.configuration.deps @@ -128,7 +128,7 @@ $(TARBALL_DIR)/flesh-Cactus.c: $(TARBALL_DIR)/flesh-Cactus.tar.gz $(CCTK_HOME)/a $(TARBALL_DIR)/flesh-Cactus.tar.gz: $(TARBALL_DIR)/flesh-Cactus.files cd $(CCTK_HOME) && \ - $(TAR) czf $@ -T $< || [ $$[ $$? / \($(IS_GNUTAR)+1\) ] -eq 0 ] + $(TAR) czf $@ -T $< || [ $$[ $$? / ($(IS_GNUTAR)+1) ] -eq 0 ] # This dependency means that the tarball for a thorn is only updated # if the thorn is actually recompiled. This does not catch changes to @@ -187,7 +187,7 @@ $(TARBALL_DIR)/thorn-%.c: $(TARBALL_DIR)/thorn-%.tar.gz $(CCTK_HOME)/arrangement $(TARBALL_DIR)/thorn-%.tar.gz: $(TARBALL_DIR)/thorn-%.files cd $(CCTK_HOME) && \ - $(TAR) czf $@ -T $< || [ $$[ $$? / \($(IS_GNUTAR)+1\) ] -eq 0 ] + $(TAR) czf $@ -T $< || [ $$[ $$? / ($(IS_GNUTAR)+1) ] -eq 0 ] # This dependency means that the tarball for a thorn is only updated # if the thorn is actually recompiled. This does not catch changes to -- cgit v1.2.3