diff options
author | Enrico Zini <enrico@enricozini.org> | 2010-07-15 12:10:36 +0100 |
---|---|---|
committer | Enrico Zini <enrico@enricozini.org> | 2010-07-15 12:10:36 +0100 |
commit | 4fc16e3394e349feb99ac9fe12f6d8d2875735f9 (patch) | |
tree | 4c6428d78bd03e4cbd11147f134e6931700b6be1 | |
parent | c2ac9b1b238686e521142b7898b6e3073d0e60c2 (diff) | |
download | libept-4fc16e3394e349feb99ac9fe12f6d8d2875735f9.tar.gz |
Override sourcelist config option so we don't look for the custom name used in the buildds
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | ept/test.h | 1 |
3 files changed, 9 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c807f11..d7e42c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ include( FindDoxygen ) add_custom_target( unit ) -set( EPT_VERSION "1.0.2+test3" ) +set( EPT_VERSION "1.0.2+test4" ) set( APT_INCLUDES "/usr/include/" CACHE STRING "apt include path" ) set( APT_LINKDIRS "/usr/lib/" CACHE STRING "apt library path" ) set( OPT_FLAGS "-O0 -g" CACHE STRING "optimization level" ) diff --git a/debian/changelog b/debian/changelog index a0046ef..11e2677 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +libept (1.0.2+test4) experimental; urgency=low + + * Override sourcelist config option so we don't look for the custom name + used in the buildds + + -- Enrico Zini <enrico@debian.org> Thu, 15 Jul 2010 12:09:54 +0100 + libept (1.0.2+test3) experimental; urgency=low * More debug info @@ -26,6 +26,7 @@ struct AptTestEnvironment { _config->Set("Dir::Cache", "cache"); _config->Set("Dir::State", "state"); _config->Set("Dir::Etc", "etc"); + _config->Set("Dir::Etc::sourcelist", "sources.list"); _config->Set("Dir::State::status", TEST_ENV_DIR "dpkg-status"); pkgInitSystem (*_config, _system); } |