aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.deps
diff options
context:
space:
mode:
authoreschnett <eschnett@83718e91-0e4f-0410-abf4-91180603181f>2010-08-06 21:45:20 +0000
committereschnett <eschnett@83718e91-0e4f-0410-abf4-91180603181f>2010-08-06 21:45:20 +0000
commitce20f4b59e5d8edbb41380e2405e21b271a60b1b (patch)
tree846d4f5c105a912dc0ca9690e592362cc8360f41 /src/make.configuration.deps
parentc36bf320da429160ff61f2772f1a3fc0ddb7fc58 (diff)
Correct error in autogeneration of tarballs.
Not all files were compiled, leading to zero-length tarballs when output. git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@189 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/make.configuration.deps')
-rw-r--r--src/make.configuration.deps3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/make.configuration.deps b/src/make.configuration.deps
index 04ec21d..2d90e35 100644
--- a/src/make.configuration.deps
+++ b/src/make.configuration.deps
@@ -32,6 +32,7 @@ FRM-LIB = $(CCTK_LIBDIR)/$(LIBNAME_PREFIX)$(CCTK_LIBNAME_PREFIX)Formaline-cactus
$(EXEDIR)$(DIRSEP)$(EXE): $(FRM-LIB)
FRM-OBJS = $(TARBALL_DIR)/cactus-meta-source.o $(TARBALL_DIR)/build-id.o $(TARBALL_DIR)/cactus-flesh-source.o $(patsubst %,$(TARBALL_DIR)/cactus-thorn-source-%.o,$(notdir $(THORNS)))
+FRM-OBJS-other = $(TARBALL_DIR)/cactus-flesh-source-????.o $(patsubst %,$(TARBALL_DIR)/cactus-thorn-source-%-????.o,$(notdir $(THORNS)))
$(FRM-LIB): $(FRM-OBJS)
# $(AR) $(ARFLAGS) $@ $^
@@ -238,7 +239,7 @@ ifeq ($(shell test $(FRM-OBJS-words) -le $(FRM-OBJS-words-max) && echo 1), 1)
.PHONY: $(FRM-LIB).objectlist.custom
$(FRM-LIB).objectlist.custom:
- echo $(FRM-OBJS) > $(FRM-LIB).objectlist
+ echo $(FRM-OBJS) $(FRM-OBJS-other) > $(FRM-LIB).objectlist
else