diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-11-24 08:42:10 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-11-24 08:42:10 +0000 |
commit | e388334ed73df839a1d72dd13f65800e2f1b3d38 (patch) | |
tree | 71f588d62502e0ae9725758fc1167942ef2a82ac | |
parent | 0b2028e6ce0f2da8c94c80db0d237f1036de8d90 (diff) | |
download | samba-e388334ed73df839a1d72dd13f65800e2f1b3d38.tar.gz samba-e388334ed73df839a1d72dd13f65800e2f1b3d38.tar.bz2 samba-e388334ed73df839a1d72dd13f65800e2f1b3d38.zip |
Try to twiddle with the makefile to avoid having a trailing \ when we
don't build any extra programs.
(This used to be commit 9bac0b72774fe0c05956065a34ef48c05a7acaad)
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 05457ec03c..8ec552e367 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -538,8 +538,8 @@ NTLM_AUTH_OBJ = utils/ntlm_auth.o $(POPT_LIB_OBJ) ###################################################################### # now the rules... ###################################################################### -all : SHOWFLAGS proto_exists $(SBIN_PROGS) $(BIN_PROGS) $(SHLIBS) $(TORTURE_PROGS) \ - @EXTRA_ALL_TARGETS@ +all : SHOWFLAGS proto_exists $(SBIN_PROGS) $(BIN_PROGS) $(SHLIBS) \ + $(TORTURE_PROGS) @EXTRA_ALL_TARGETS@ pam_smbpass : SHOWFLAGS bin/pam_smbpass.@SHLIBEXT@ |