diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-01-13 17:41:47 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-01-13 17:41:47 +0200 |
commit | 79c9e1e1722cdb71e9bb6c4a3c89424879293dfb (patch) | |
tree | 2c6e6eb386037d16e5ec0d0ce3a1b02f4600480c /environment.py | |
parent | 5969b1ed334454ff6907c521493d635bfb878456 (diff) | |
download | meson-79c9e1e1722cdb71e9bb6c4a3c89424879293dfb.zip meson-79c9e1e1722cdb71e9bb6c4a3c89424879293dfb.tar.gz meson-79c9e1e1722cdb71e9bb6c4a3c89424879293dfb.tar.bz2 |
Start work on descending to subdirectories.
Diffstat (limited to 'environment.py')
-rwxr-xr-x | environment.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/environment.py b/environment.py index ec2d73c..1730640 100755 --- a/environment.py +++ b/environment.py @@ -16,6 +16,8 @@ import subprocess, os.path +builder_filename = 'builder.txt' + class EnvironmentException(Exception): def __init(self, *args, **kwargs): Exception.__init__(self, *args, **kwargs) |