summaryrefslogtreecommitdiff
path: root/source4/build/smb_build
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-02-19 03:57:30 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-02-19 03:57:30 +0100
commit9368ea67cdbb0d1fe5ef2258cc7e8c20c66e6ecd (patch)
tree6af8f0130b0e9f610cdfb60fadf7ccb9193c6e8b /source4/build/smb_build
parent35dd0b0f4ad6ab0d9365d2858b60bf82e4877bda (diff)
downloadsamba-9368ea67cdbb0d1fe5ef2258cc7e8c20c66e6ecd.tar.gz
samba-9368ea67cdbb0d1fe5ef2258cc7e8c20c66e6ecd.tar.bz2
samba-9368ea67cdbb0d1fe5ef2258cc7e8c20c66e6ecd.zip
Fix CFLAGS (caused problems on hosts without libgssapi installed on the system).
(This used to be commit f6760fd161f568ef13a841a0210f130160a16c01)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r--source4/build/smb_build/output.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/output.pm b/source4/build/smb_build/output.pm
index 83be28e740..ff9afe8e8c 100644
--- a/source4/build/smb_build/output.pm
+++ b/source4/build/smb_build/output.pm
@@ -185,7 +185,7 @@ sub create_output($$)
merge_array(\$part->{FINAL_CFLAGS}, $part->{CPPFLAGS});
merge_array(\$part->{FINAL_CFLAGS}, $part->{CFLAGS});
- foreach (@{$part->{UNIQUE_DEPENDENCIES_COMPILE}}) {
+ foreach (@{$part->{UNIQUE_DEPENDENCIES_ALL}}) {
my $elem = $depend->{$_};
next if $elem == $part;