1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

heimdal: Allow leaving off prefix from asn1 option_file.

This commit is contained in:
Jelmer Vernooij 2010-10-16 17:26:24 +02:00
parent eab84a6ed0
commit 9147e19611

View File

@ -23,6 +23,9 @@ def HEIMDAL_ASN1(name, source,
dname = os.path.dirname(source)
asn1name = "%s_asn1" % bname
if option_file:
option_file = heimdal_path(option_file)
if not SET_TARGET_TYPE(bld, name, 'ASN1'):
return
@ -340,7 +343,7 @@ HEIMDAL_ASN1('HEIMDAL_GSSAPI_ASN1',
HEIMDAL_ASN1('HEIMDAL_KRB5_ASN1',
'lib/asn1/krb5.asn1',
option_file='../heimdal/lib/asn1/krb5.opt',
option_file='lib/asn1/krb5.opt',
directory='lib/asn1'
)
@ -699,7 +702,7 @@ if not bld.CONFIG_SET("USING_SYSTEM_HX509"):
HEIMDAL_ASN1('HEIMDAL_CMS_ASN1',
'lib/asn1/cms.asn1',
option_file='../heimdal/lib/asn1/cms.opt',
option_file='lib/asn1/cms.opt',
directory='lib/asn1'
)