diff options
author | Lars Müller <lmuelle@samba.org> | 2007-03-12 20:57:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:18:35 -0500 |
commit | 668da636e32078b4a23199a02dc9a68d099e8bac (patch) | |
tree | b1ca436ed07fd4263756192b4197154fe58096c6 /source3 | |
parent | a5dd4355cddbd49de1f2434c1a890799dd1a1dd0 (diff) | |
download | samba-668da636e32078b4a23199a02dc9a68d099e8bac.tar.gz samba-668da636e32078b4a23199a02dc9a68d099e8bac.tar.bz2 samba-668da636e32078b4a23199a02dc9a68d099e8bac.zip |
r21804: Create a reference after proto_exits was called once. Else we link the
binaries again with each make. Thx Volker to point my chesty at this.
(This used to be commit 0cb6634d94f601a96541f882a5486e82084f9413)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 899c3f703f..091d2f4812 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1837,7 +1837,7 @@ clean: delheaders python_clean $(TOPFILES) $(BIN_PROGS) $(SBIN_PROGS) $(ROOT_SBIN_PROGS) \ $(MODULES) $(TORTURE_PROGS) $(LIBSMBCLIENT) $(LIBADDNS) \ $(LIBSMBSHAREMODES) $(EVERYTHING_PROGS) $(LIBMSRPC) \ - .headers.stamp */src/*.o + .headers.stamp */src/*.o proto_exists -rm -rf t_dir # Making this target will just make sure that the prototype files @@ -1847,6 +1847,7 @@ clean: delheaders python_clean proto_exists: include/proto.h include/build_env.h \ nsswitch/winbindd_proto.h web/swat_proto.h \ client/client_proto.h utils/net_proto.h utils/ntlm_auth_proto.h smbd/build_options.c + @touch proto_exists delheaders: @echo Removing prototype headers |