summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2001-10-23 20:32:24 +0000
committerHerb Lewis <herb@samba.org>2001-10-23 20:32:24 +0000
commit9e9b503024ba71fee9af40c8953b24d1632ce25a (patch)
tree29772c95d8bcce5978e774ba7ed134eb88e7d506
parent3ea349271355b39f7b877ce67530cc58e7db0ee8 (diff)
downloadsamba-9e9b503024ba71fee9af40c8953b24d1632ce25a.tar.gz
samba-9e9b503024ba71fee9af40c8953b24d1632ce25a.tar.bz2
samba-9e9b503024ba71fee9af40c8953b24d1632ce25a.zip
.headers.stamp not getting touched if file already existed.
Not sure what the original intent was with the [ -f $@ ] test but this prevented the touch from happening. Could whoever originally added this target check this out? (This used to be commit 813490855339cffa31c8734ecd362eba7585bda2)
-rw-r--r--source3/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 9f9943a6a2..723ac2e165 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -724,7 +724,7 @@ delheaders:
# we want our generated headers to be rebuilt if they don't exist, but not rebuilt every time
.headers.stamp: include/proto.h include/build_env.h
- @[ -f $@ ] || touch $@
+ @touch $@
$(PROTO_OBJ) : .headers.stamp