File: ar.py

package info (click to toggle)
flowcanvas 0.7.1%2Bdfsg0-0.3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 956 kB
  • ctags: 1,754
  • sloc: python: 11,118; cpp: 3,414; makefile: 17
file content (13 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env python
# encoding: utf-8
# WARNING! All changes made to this file will be lost!

import os
from waflib.Configure import conf
def find_ar(conf):
	conf.load('ar')
def configure(conf):
	conf.find_program('ar',var='AR')
	conf.env.ARFLAGS='rcs'

conf(find_ar)