diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-08 11:42:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:17:57 -0500 |
commit | ebc1533a2054cb1da50b9bf71c30812cd5b766b9 (patch) | |
tree | 73040d1f31dde896708a87dfb26167832377e58d | |
parent | 217998018f9b39c99bd0fb91257c15fb59151fd8 (diff) | |
download | samba-ebc1533a2054cb1da50b9bf71c30812cd5b766b9.tar.gz samba-ebc1533a2054cb1da50b9bf71c30812cd5b766b9.tar.bz2 samba-ebc1533a2054cb1da50b9bf71c30812cd5b766b9.zip |
r18260: fix the build on systems with broken readdir
this is just a short term hack
we should move the stuff from lib/replace/config.mk
into a lib/replace/samba.m4 and dynamicly generate the OBJ_FILES
list for LIBREPLACE and get rid of REPLACE_REPDIR
metze
(This used to be commit e27a36286845b95150d06daaae8f5dcf988febd7)
-rw-r--r-- | source4/build/smb_build/input.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/build/smb_build/input.pm b/source4/build/smb_build/input.pm index 23f25a5854..2465caa68b 100644 --- a/source4/build/smb_build/input.pm +++ b/source4/build/smb_build/input.pm @@ -36,6 +36,7 @@ sub add_libreplace($) return if ($part->{NAME} eq "LIBREPLACE"); return if ($part->{NAME} eq "LIBREPLACE_HOSTCC"); + return if ($part->{NAME} eq "REPLACE_READDIR"); foreach my $n (@{$part->{PRIVATE_DEPENDENCIES}}) { return if ($n eq "LIBREPLACE"); |