Changeset 40bdc14 for wscript


Ignore:
Timestamp:
Dec 17, 2018, 2:34:15 AM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/crepe, fix/ffmpeg5, master
Children:
4c37e87
Parents:
0850e54 (diff), 0512fca (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into feature/sink_vorbis

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    r0850e54 r40bdc14  
    566566                target = bld.path.find_or_declare('api/index.html'),
    567567                cwd = bld.path.find_dir('doc'))
     568        # evaluate nodes lazily to prevent build directory traversal warnings
    568569        bld.install_files('${DATAROOTDIR}/doc/libaubio-doc/api',
    569                 bld.path.find_or_declare('api').ant_glob('**/*'),
    570                 cwd=bld.path.find_or_declare('api'),
     570                bld.path.find_or_declare('api').ant_glob('**/*',
     571                    generator=True), cwd=bld.path.find_or_declare('api'),
    571572                relative_trick=True)
    572573
     
    590591                source = bld.path.find_dir('doc').ant_glob('*.rst'),
    591592                target = bld.path.find_or_declare('manual/index.html'))
     593        # evaluate nodes lazily to prevent build directory traversal warnings
    592594        bld.install_files('${DATAROOTDIR}/doc/libaubio-doc/manual',
    593                 bld.path.find_or_declare('manual').ant_glob('**/*'),
    594                 cwd=bld.path.find_or_declare('manual'),
     595                bld.path.find_or_declare('manual').ant_glob('**/*',
     596                    generator=True), cwd=bld.path.find_or_declare('manual'),
    595597                relative_trick=True)
    596598
Note: See TracChangeset for help on using the changeset viewer.