diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2012-12-29 22:20:44 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2012-12-29 22:20:44 +0200 |
commit | 231c2c2bc176cd56a5e5c688e7bbac4430181e51 (patch) | |
tree | 9f26d73db250629070494701a6cd661a5f57a2db | |
parent | 026aa086dcb09d48ef658ccfc3e4a857bf416016 (diff) | |
download | meson-231c2c2bc176cd56a5e5c688e7bbac4430181e51.zip meson-231c2c2bc176cd56a5e5c688e7bbac4430181e51.tar.gz meson-231c2c2bc176cd56a5e5c688e7bbac4430181e51.tar.bz2 |
Renamed build area for great tab autocompletion justice.
-rwxr-xr-x | run_tests.py | 2 | ||||
-rwxr-xr-x | shellgenerator.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py index d8c3f95..f4ec4de 100755 --- a/run_tests.py +++ b/run_tests.py @@ -17,7 +17,7 @@ from glob import glob import os, subprocess, shutil -test_build_dir = 'test build area' +test_build_dir = 'work area' builder_command = './builder.py' def run_test(testdir): diff --git a/shellgenerator.py b/shellgenerator.py index 6ac6f0b..8b410b6 100755 --- a/shellgenerator.py +++ b/shellgenerator.py @@ -93,5 +93,5 @@ if __name__ == '__main__': executable('prog', 'prog.c') """ os.chdir(os.path.split(__file__)[0]) - g = ShellGenerator(code, '.', 'test build area') + g = ShellGenerator(code, '.', 'work area') g.generate() |