diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-03-04 16:46:35 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-03-04 16:48:04 +0100 |
commit | bac5f0412fc60702a40c02667ebb953f238eb5c7 (patch) | |
tree | 8aee5d313e335ed732958de68632a2e3a3373bb3 | |
parent | ae027c880ddf1e5d1e66d891a25f311b7a097928 (diff) |
build: set configure cache file in the sources directory
This way it's removed in the wipe process and changes in the config
are the environment do not conflict with future builds
-rw-r--r-- | cerbero/build/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/build/build.py b/cerbero/build/build.py index 52bc85f..59fb47d 100644 --- a/cerbero/build/build.py +++ b/cerbero/build/build.py @@ -273,7 +273,7 @@ class Autotools (MakefilesBase): use_configure_cache = False if use_configure_cache and self.can_use_configure_cache: - cache = os.path.join(self.config.prefix, '.configure.cache') + cache = os.path.join(self.config.sources, '.configure.cache') self.config_sh += ' --cache-file=%s' % cache MakefilesBase.configure(self) |