diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-19 19:51:13 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:55 +1000 |
commit | bcc1ce2617f67f568ec2535ab447b14550f4e3cd (patch) | |
tree | 94e5cf214612bbb14fb1bce412b3f243ea9b46a3 /source4/heimdal_build | |
parent | 6ef00262efd7e42b5ca5ca9ebe20af4863e7611b (diff) | |
download | samba-bcc1ce2617f67f568ec2535ab447b14550f4e3cd.tar.gz samba-bcc1ce2617f67f568ec2535ab447b14550f4e3cd.tar.bz2 samba-bcc1ce2617f67f568ec2535ab447b14550f4e3cd.zip |
build: don't install the heimdal compilers
Diffstat (limited to 'source4/heimdal_build')
-rw-r--r-- | source4/heimdal_build/wscript_build | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/source4/heimdal_build/wscript_build b/source4/heimdal_build/wscript_build index 6b0b951eba..abae682fd7 100644 --- a/source4/heimdal_build/wscript_build +++ b/source4/heimdal_build/wscript_build @@ -381,6 +381,7 @@ bld.SAMBA_BINARY('asn1_compile', includes='../heimdal/lib/asn1 ../heimdal/lib/roken', group='build_compilers', deps='HEIMDAL_ROKEN_H replace', + install=False ) @@ -389,14 +390,16 @@ bld.SAMBA_BINARY('compile_et', use_hostcc=True, group='build_compilers', cflags='-DSOCKET_WRAPPER_DISABLE=1 -DNSS_WRAPPER_DISABLE=1 -D_SAMBA_HOSTCC_ -DFOO2', - deps='HEIMDAL_ROKEN_H replace' + deps='HEIMDAL_ROKEN_H replace', + install=False ) bld.SAMBA_BINARY('samba4kinit', '../heimdal/kuser/kinit.c ../heimdal/lib/vers/print_version.c', includes='../heimdal/lib/roken', - deps='HEIMDAL_KRB5 HEIMDAL_NTLM' + deps='HEIMDAL_KRB5 HEIMDAL_NTLM', + install=False ) @@ -404,14 +407,16 @@ bld.SAMBA_BINARY('samba4kpasswd', '../heimdal/kpasswd/kpasswd.c ../heimdal/lib/vers/print_version.c', cflags='-DFOO3', includes='../heimdal/lib/roken', - deps='HEIMDAL_KRB5 HEIMDAL_NTLM' + deps='HEIMDAL_KRB5 HEIMDAL_NTLM', + install=False ) bld.SAMBA_BINARY('rkpty', '../heimdal/lib/roken/rkpty.c ../../lib/socket_wrapper/socket_wrapper.c', deps='HEIMDAL_ROKEN OPENPTY', - cflags='-DPACKAGE="Samba"' + cflags='-DPACKAGE="Samba"', + install=False ) HEIMDAL_GSSAPI_SPNEGO_SOURCE = ''' |