diff options
author | Herb Lewis <herb@samba.org> | 2001-10-23 20:32:24 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2001-10-23 20:32:24 +0000 |
commit | 813490855339cffa31c8734ecd362eba7585bda2 (patch) | |
tree | 5376cdda87337da367c25d90978a430717c3762d | |
parent | 51cb4411df61d1caec9d84809b1a53a6a632f808 (diff) | |
download | samba-813490855339cffa31c8734ecd362eba7585bda2.tar.gz samba-813490855339cffa31c8734ecd362eba7585bda2.tar.xz samba-813490855339cffa31c8734ecd362eba7585bda2.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?
-rw-r--r-- | source/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Makefile.in b/source/Makefile.in index 9f9943a6a25..723ac2e165a 100644 --- a/source/Makefile.in +++ b/source/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 |