diff options
author | Andrew Bartlett <abartlet@samba.org> | 2001-10-26 23:03:33 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2001-10-26 23:03:33 +0000 |
commit | 464def3437f5955bb836cddbde6bdefcca44ae0d (patch) | |
tree | fb0d6d75a6df1d42d6b1ae4a1d717dfc3fbe119a | |
parent | a9cf7fb2da28ad09702fda30486ae9698b2df21c (diff) | |
download | samba-464def3437f5955bb836cddbde6bdefcca44ae0d.tar.gz samba-464def3437f5955bb836cddbde6bdefcca44ae0d.tar.xz samba-464def3437f5955bb836cddbde6bdefcca44ae0d.zip |
Restore the intended behaviour for .headers.stamp
We don't want a 'make headers' (aka make proto) to force a rebuild
of the entire tree.
Andrew Bartlett
(This used to be commit 8c0cb50387cbbcca89d12cefae40a6a02d147ea4)
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 723ac2e165..82855cfc14 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 - @touch $@ + @[ -f $@ ] || @touch $@ $(PROTO_OBJ) : .headers.stamp |