source: waflib/Tools/ar.py @ 904702d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 904702d was 904702d, checked in by Paul Brossier <piem@piem.org>, 9 years ago

waf, waflib: update to 1.8.7

  • Property mode set to 100644
File size: 359 bytes
Line 
1#! /usr/bin/env python
2# encoding: utf-8
3# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file
4
5from waflib.Configure import conf
6@conf
7def find_ar(conf):
8        conf.load('ar')
9def configure(conf):
10        conf.find_program('ar',var='AR')
11        conf.add_os_flags('ARFLAGS')
12        if not conf.env.ARFLAGS:
13                conf.env.ARFLAGS=['rcs']
Note: See TracBrowser for help on using the repository browser.