diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-10 10:55:20 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-10 10:55:38 +0100 |
commit | e8909e284040b0a3fd55e3abe33ad57c94e20b7d (patch) | |
tree | b2d09f20cf2ceb89988cdf8d5f7805ee2960293d | |
parent | 7579e08599dd2139617da5639144700774233c08 (diff) | |
download | samba-e8909e284040b0a3fd55e3abe33ad57c94e20b7d.tar.gz samba-e8909e284040b0a3fd55e3abe33ad57c94e20b7d.tar.bz2 samba-e8909e284040b0a3fd55e3abe33ad57c94e20b7d.zip |
Fix suspicious Makefile line
If @WINBIND_KRB5_LOCATOR@ is not defined, this leads to a line with just one
tab in.
(This used to be commit af07adaf4293899fcbded666289ffa7479ca0501)
-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 a3a7e5628f..71150df7a3 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1046,8 +1046,8 @@ replacetort : SHOWFLAGS bin/replacetort@EXEEXT@ timelimit : SHOWFLAGS bin/timelimit@EXEEXT@ nsswitch : SHOWFLAGS bin/winbindd@EXEEXT@ bin/wbinfo@EXEEXT@ @WINBIND_NSS@ \ - @WINBIND_WINS_NSS@ bin/pam_winbind.@SHLIBEXT@ bin/smbcontrol@EXEEXT@ \ - @WINBIND_KRB5_LOCATOR@ + @WINBIND_WINS_NSS@ @WINBIND_KRB5_LOCATOR@ \ + bin/pam_winbind.@SHLIBEXT@ bin/smbcontrol@EXEEXT@ wins : SHOWFLAGS @WINBIND_WINS_NSS@ |