From 9e9b503024ba71fee9af40c8953b24d1632ce25a Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Tue, 23 Oct 2001 20:32:24 +0000 Subject: .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) --- source3/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit