Changeset d013a93 for wscript


Ignore:
Timestamp:
Dec 17, 2018, 4:42:29 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/crepe, fix/ffmpeg5, master
Children:
d286fe4
Parents:
2de7cfa (diff), 09b4be9 (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 'feature/sink_flac' into feature/autosink

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    r2de7cfa rd013a93  
    576576                target = bld.path.find_or_declare('api/index.html'),
    577577                cwd = bld.path.find_dir('doc'))
     578        # evaluate nodes lazily to prevent build directory traversal warnings
    578579        bld.install_files('${DATAROOTDIR}/doc/libaubio-doc/api',
    579                 bld.path.find_or_declare('api').ant_glob('**/*'),
    580                 cwd=bld.path.find_or_declare('api'),
     580                bld.path.find_or_declare('api').ant_glob('**/*',
     581                    generator=True), cwd=bld.path.find_or_declare('api'),
    581582                relative_trick=True)
    582583
     
    600601                source = bld.path.find_dir('doc').ant_glob('*.rst'),
    601602                target = bld.path.find_or_declare('manual/index.html'))
     603        # evaluate nodes lazily to prevent build directory traversal warnings
    602604        bld.install_files('${DATAROOTDIR}/doc/libaubio-doc/manual',
    603                 bld.path.find_or_declare('manual').ant_glob('**/*'),
    604                 cwd=bld.path.find_or_declare('manual'),
     605                bld.path.find_or_declare('manual').ant_glob('**/*',
     606                    generator=True), cwd=bld.path.find_or_declare('manual'),
    605607                relative_trick=True)
    606608
Note: See TracChangeset for help on using the changeset viewer.