fwcutter/make: Avoid _DEFAULT_SOURCE warning
[b43-tools.git] / debug / install.py
1 #!/usr/bin/env python
2 #
3 # Run this script as root to install the debugging tools
4 #
5
6 from distutils.core import setup
7 import sys
8
9 if len(sys.argv) == 1:
10         sys.argv.append("install")      # default to INSTALL
11
12 setup(
13         name="B43-debug-tools",
14         py_modules=["libb43"],
15         scripts=["b43-fwdump", "b43-beautifier"]
16      )