[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: Installing man/info pages, attempt III

From: Sander Striker <striker_at_apache.org>
Date: 2001-10-24 10:57:14 CEST

> From: Daniel Stenberg [mailto:daniel@haxx.se]
> Sent: 24 October 2001 10:46

> Hi
>
> This time, I've taken my attempts one step further, even into the
> realms of
> python scripting in which I am a major cluebie. Please point out
> my mistakes.
> These fixes all seem to work for me.

Comments inline.
 
> Highlights:
[...]

> Index: gen-make.py
> ===================================================================
> --- .svn/text-base/gen-make.py Mon Oct 8 11:33:05 2001
> +++ gen-make.py Tue Oct 23 16:39:29 2001
> @@ -241,6 +241,10 @@
> errors = errors or s_errors
>
> fs_scripts, fs_errors =
> _collect_paths(parser.get('fs-test-scripts', 'paths'))
> +
> + manpages, manpages_errors =
> _collect_paths(parser.get('manpages', 'paths'))
> + infopages, infopages_errors =
> _collect_paths(parser.get('infopages', 'paths'))
> +
> errors = errors or fs_errors

    errors = errors or fs_errors or manpages_errors or infopages_errors
 
> ofile.write('FS_TEST_DEPS = %s\n\n' % string.join(fs_test_deps
> + fs_scripts))
> @@ -249,6 +253,9 @@
> ofile.write('TEST_DEPS = %s\n\n' % string.join(test_deps + scripts))
> ofile.write('TEST_PROGRAMS = %s\n\n' % string.join(test_progs
> + scripts))
>
> + ofile.write('MANPAGES = %s\n\n' % string.join(manpages))
> + ofile.write('INFOPAGES = %s\n\n' % string.join(infopages))
> +

Don't know about these string.join statements.

> if not skip_depends:
> #
> # Find all the available headers and what they depend upon. the
> @@ -329,6 +336,8 @@
> }
>
> _predef_sections = [
> + 'manpages',
> + 'infopages',
> 'includes',
> 'static-apache',
> 'test-scripts',
>
> --

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:45 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.