Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 556960
Collapse All | Expand All

(-)a/lib/tdb/wscript (-6 / +6 lines)
Lines 187-198 def build(bld): Link Here
187
                             realname='tdb.so',
187
                             realname='tdb.so',
188
                             cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)
188
                             cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION)
189
189
190
        for env in bld.gen_python_environments(['PKGCONFIGDIR']):
190
        if not bld.env.disable_python:
191
            bld.SAMBA_SCRIPT('_tdb_text.py',
191
            for env in bld.gen_python_environments(['PKGCONFIGDIR']):
192
                             pattern='_tdb_text.py',
192
                bld.SAMBA_SCRIPT('_tdb_text.py',
193
                             installdir='python')
193
                                 pattern='_tdb_text.py',
194
                                 installdir='python')
194
195
195
            bld.INSTALL_FILES('${PYTHONARCHDIR}', '_tdb_text.py')
196
                bld.INSTALL_FILES('${PYTHONARCHDIR}', '_tdb_text.py')
196
197
197
def testonly(ctx):
198
def testonly(ctx):
198
    '''run tdb testsuite'''
199
    '''run tdb testsuite'''
199
- 

Return to bug 556960