diff options
author | Richard Sharpe <sharpe@samba.org> | 2001-05-16 15:33:07 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2001-05-16 15:33:07 +0000 |
commit | e307e9d814bbcf3bd0e85408d4f78279ebb1e1cf (patch) | |
tree | c1d5a0d9581340e42a6857a221b24ab412d6e5aa | |
parent | 84913375ccd0af818f5b78c7ab30f32a9d9b0478 (diff) | |
download | samba-e307e9d814bbcf3bd0e85408d4f78279ebb1e1cf.tar.gz samba-e307e9d814bbcf3bd0e85408d4f78279ebb1e1cf.tar.bz2 samba-e307e9d814bbcf3bd0e85408d4f78279ebb1e1cf.zip |
Fix a stupid typo in Makefile.in that prevented the libsmbclient code
from being compiled with -fpic ... Larger changes coming ... I want to move
to -fPIC etc.
(This used to be commit 122e2753d518fc599e06e1533378815eebb18d4f)
-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 1dea8b151f..c635f97f1c 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -337,7 +337,7 @@ NSS_OBJ = $(NSS_OBJ_0:.o=.po) PICOBJS = $(SMBWRAPPER_OBJ:.o=.po) PICOBJS32 = $(SMBWRAPPER_OBJ:.o=.po32) -LIBSMBCLIENT_PICOBJS = $(LIBSMBCLIENT_OBJ:.0=.po) +LIBSMBCLIENT_PICOBJS = $(LIBSMBCLIENT_OBJ:.o=.po) PAM_SMBPASS_OBJ_0 = pam_smbpass/pam_smb_auth.o pam_smbpass/pam_smb_passwd.o \ pam_smbpass/pam_smb_acct.o pam_smbpass/support.o \ |