diff options
author | dhuth <derickhuth@gmail.com> | 2015-04-13 12:03:33 -0600 |
---|---|---|
committer | dhuth <derickhuth@gmail.com> | 2015-04-13 12:03:33 -0600 |
commit | b530622a9b2261b1e8a9c5202285d3928c97b893 (patch) | |
tree | 72cc6a79d4e3dae1fa1a84dbbc69c49ed5cc17df /test-chill/testchill | |
parent | 2bebca1c3fe897fb681e1853d7d565ecb0be8b52 (diff) | |
download | chill-b530622a9b2261b1e8a9c5202285d3928c97b893.tar.gz chill-b530622a9b2261b1e8a9c5202285d3928c97b893.tar.bz2 chill-b530622a9b2261b1e8a9c5202285d3928c97b893.zip |
Revert "--"
This reverts commit 2bebca1c3fe897fb681e1853d7d565ecb0be8b52.
Diffstat (limited to 'test-chill/testchill')
-rw-r--r-- | test-chill/testchill/chill.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-chill/testchill/chill.py b/test-chill/testchill/chill.py index 833d524..0e30149 100644 --- a/test-chill/testchill/chill.py +++ b/test-chill/testchill/chill.py @@ -146,12 +146,13 @@ class BuildChillTestCase(test.TestCase): util.shell('rm', ['-f', '*.gcda'], wd=self.config.chill_dir) util.shell('make clean', wd=self.config.chill_dir) + util.shell('make veryclean', wd=self.config.chill_dir) def run(self): """ Build chill """ - util.shell('make', ['distclean'], wd=self.config.chill_dir) + util.shell('make', ['clean'], wd=self.config.chill_dir) util.shell('./configure', self.config.config_args, wd=self.config.chill_dir) util.shell('make', [], wd=self.config.chill_dir) |