X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=SConstruct;h=fb783eccf1778592e8be8ffc18a184f4de204e9e;hb=95dbe5b838a354d4e276e8f2cdd445c9ed5bf42c;hp=943536e78f5185b1f2165fe81f491b7bcdef3b11;hpb=cb766a7c53aa51dcbc72ab0753ca29a2cc17ff90;p=senf.git diff --git a/SConstruct b/SConstruct index 943536e..fb783ec 100644 --- a/SConstruct +++ b/SConstruct @@ -130,7 +130,7 @@ env.Append( 'CONCURRENCY_LEVEL' : env.GetOption('num_jobs') or "1", 'SCONS' : 1, 'PATH' : os.environ.get('PATH'), - 'TEXINPUTS' : os.environ.get('TEXINPUTS',':'), + 'TEXINPUTS' : os.environ.get('TEXINPUTS',env.Dir('#/doclib').abspath + ':'), }, LOCAL_CONFIG_FILES = [ '/Doxyfile.local', '/SConfig', '/local_config.hh' ], DPKG_IGNORED_FILES = [ '$LOCAL_CONFIG_FILES', '.svn', '/_templates' ], @@ -242,7 +242,7 @@ PhonyTarget(env, 'fixlinks', [ 'python doclib/fix-links.py -v -s .svn -s linklint -s debian linklint/errorX.txt linklint/errorAX.txt', ]) -PhonyTarget(env, 'prepare', []) +PhonyTarget(env, 'prepare', [ 'true' ]) PhonyTarget(env, 'valgrind', [ 'find -name .test.bin | while read test; do echo; echo "Running $$test"; echo; valgrind --tool=memcheck --error-exitcode=99 --suppressions=valgrind.sup $$test $BOOSTTESTARGS; [ $$? -ne 99 ] || exit 1; done'