Ignore:
Timestamp:
Nov 25, 2016, 8:04:54 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/ctdb/wscript

    r988 r989  
    209209    conf.env.CTDB_TEST_DATADIR = os.path.join(conf.env.EXEC_PREFIX,
    210210                                              'share/ctdb-tests')
    211     conf.env.CTDB_TEST_LIBDIR = os.path.join(conf.env.LIBDIR, 'ctdb-tests')
     211    conf.env.CTDB_TEST_LIBEXECDIR = os.path.join(conf.env.LIBEXECDIR, 'ctdb/tests')
    212212
    213213    # Allow unified compilation and separate compilation of utilities
     
    344344                                          '''db_hash.c srvid.c reqid.c
    345345                                             pkt_read.c pkt_write.c comm.c
    346                                              logging.c'''),
    347                         deps='replace talloc tevent tdb tevent-unix-util')
     346                                             logging.c pidfile.c'''),
     347                        deps='replace talloc tevent tdb tevent-util')
    348348
    349349    bld.SAMBA_SUBSYSTEM('ctdb-protocol',
     
    630630        'protocol_types_test',
    631631        'protocol_client_test',
     632        'pidfile_test',
    632633    ]
    633634
     
    637638        bld.SAMBA_BINARY(target,
    638639                         source=src,
    639                          deps='talloc tevent tdb tevent-unix-util',
    640                          install_path='${CTDB_TEST_LIBDIR}')
     640                         deps='talloc tevent tdb tevent-util',
     641                         install_path='${CTDB_TEST_LIBEXECDIR}')
    641642
    642643    bld.SAMBA_BINARY('reqid_test',
    643644                     source='tests/src/reqid_test.c',
    644645                     deps='samba-util',
    645                      install_path='${CTDB_TEST_LIBDIR}')
     646                     install_path='${CTDB_TEST_LIBEXECDIR}')
    646647
    647648    # Test binaries
     
    672673                         includes='include',
    673674                         deps='ctdb-client ctdb-common ctdb-util',
    674                          install_path='${CTDB_TEST_LIBDIR}')
     675                         install_path='${CTDB_TEST_LIBEXECDIR}')
    675676
    676677    bld.SAMBA_BINARY('ctdb_takeover_tests',
     
    681682                          ib_deps,
    682683                     includes='include',
    683                      install_path='${CTDB_TEST_LIBDIR}')
     684                     install_path='${CTDB_TEST_LIBEXECDIR}')
    684685
    685686    bld.SAMBA_BINARY('ctdb_functest',
     
    688689                             samba-util tdb-wrap''',
    689690                     includes='include',
    690                      install_path='${CTDB_TEST_LIBDIR}')
     691                     install_path='${CTDB_TEST_LIBEXECDIR}')
    691692
    692693    bld.SAMBA_BINARY('ctdb_stubtest',
     
    695696                             samba-util tdb-wrap''',
    696697                     includes='include',
    697                      install_path='${CTDB_TEST_LIBDIR}')
     698                     install_path='${CTDB_TEST_LIBEXECDIR}')
    698699
    699700    if bld.env.HAVE_INFINIBAND:
     
    703704                         deps='replace talloc ctdb-client ctdb-common' +
    704705                              ib_deps,
    705                          install_path='${CTDB_TEST_LIBDIR}')
     706                         install_path='${CTDB_TEST_LIBEXECDIR}')
    706707
    707708    test_subdirs = [
     
    735736
    736737    sed_expr = 's@^TEST_SCRIPTS_DIR=.*@&\\nexport TEST_BIN_DIR=\"%s\"@' % (
    737                bld.env.CTDB_TEST_LIBDIR)
     738               bld.env.CTDB_TEST_LIBEXECDIR)
    738739    bld.SAMBA_GENERATOR('ctdb-test-wrap',
    739740                        source='tests/scripts/test_wrap',
     
    744745
    745746    sed_expr1 = 's@^test_dir=.*@test_dir=%s\\nexport TEST_BIN_DIR=\"%s\"@' % (
    746                 bld.env.CTDB_TEST_DATADIR, bld.env.CTDB_TEST_LIBDIR)
     747                bld.env.CTDB_TEST_DATADIR, bld.env.CTDB_TEST_LIBEXECDIR)
    747748    sed_expr2 = 's@^\(export CTDB_TESTS_ARE_INSTALLED\)=false@\\1=true@'
    748749    bld.SAMBA_GENERATOR('ctdb-test-runner',
Note: See TracChangeset for help on using the changeset viewer.