summaryrefslogtreecommitdiff
path: root/lib/make/make.subdir
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-08-20 08:36:19 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-08-20 08:36:19 +0000
commitaafa6a6917611ba0eeb68c36f36f6ffa71a9c50e (patch)
treeb7adb7a924eb791a6e7cb59e7ca9dd77e86bcdc8 /lib/make/make.subdir
parente44938759e45f0c46eb8e314d7ead9921fe5e7d9 (diff)
Use echo "" > file to create files rather than touch file.
Fixes NFS problem described in Cactus/994 git-svn-id: http://svn.cactuscode.org/flesh/trunk@2971 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/make.subdir')
-rw-r--r--lib/make/make.subdir2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/make/make.subdir b/lib/make/make.subdir
index dacd878a..95b5d7e1 100644
--- a/lib/make/make.subdir
+++ b/lib/make/make.subdir
@@ -28,7 +28,7 @@ OBJS = $(SRCS:%=%.o)
# Build all the object files
$(CCTK_TARGET): $(OBJS)
- touch make.checked
+ echo "" > make.checked
# Rules to make the object files
include $(CONFIG)/make.config.rules