1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-06 23:02:42 +02:00

12 lines
300 B
Python

#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file
from waflib.Configure import conf
@conf
def find_ar(conf):
conf.load('ar')
def configure(conf):
conf.find_program('ar',var='AR')
conf.env.ARFLAGS='rcs'