This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=85a006290cc85f45a78ff783a2f2bb332f874da2 commit 85a006290cc85f45a78ff783a2f2bb332f874da2 Author: Guillem Jover <[email protected]> AuthorDate: Thu Feb 3 19:16:11 2011 +0100 Add support for a configuration file This will allow setting local variables there instead of having to type them everytime on the command line, or having to set them permanently on the environment. --- .gitignore | 1 + Makefile | 2 ++ Test.mk | 2 ++ 3 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index ed1b34878..43089d05a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.deb *.dsc *.tar.gz +/.pkg-tests.conf diff --git a/Makefile b/Makefile index aba9c6ecd..f7bc81541 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,8 @@ # Copyright © 2008-2010 Guillem Jover <[email protected]> # +-include .pkg-tests.conf + TESTS_MANUAL := \ t-conffile-prompt \ diff --git a/Test.mk b/Test.mk index 0ac1af95a..021111b8a 100644 --- a/Test.mk +++ b/Test.mk @@ -4,6 +4,8 @@ # Copyright © 2008 Guillem Jover <[email protected]> # +-include ../.pkg-tests.conf + BEROOT := sudo ifneq (,$(filter local-db,$(DPKG_TESTSUITE_OPTIONS))) -- Dpkg.Org's dpkg

