bug-rcs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: RCS 5.9.0 does not compile on Solaris


From: Jörn Clausen
Subject: Re: RCS 5.9.0 does not compile on Solaris
Date: Tue, 04 Jun 2013 10:01:10 +0200
User-agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:1.9.2.28) Gecko/20120307 Lightning/1.0b2 Thunderbird/3.1.20

extract-help now sets a positive return value, so make stops:

gmake[1]: Entering directory `/pkgsrc/source/local/rcs-5.9.0/src'
../build-aux/extract-help -o ci.help ci.c
gmake[1]: *** [ci.help] Error 1
gmake[1]: Leaving directory `/pkgsrc/source/local/rcs-5.9.0/src'
gmake: *** [all-recursive] Error 1


$ .../rcs-5.9.0/src> ../build-aux/extract-help -o ci.help ci.c
$ .../rcs-5.9.0/src> echo $?
1

which probably means, that the last condition in the script still does not work as expected. The line

#include "b-yacmd.h"

is still not included in the help file.

The solution in pkgsrc (which is the source of this software for me) was to switch to ksh:

$ .../rcs-5.9.0/src> ksh ../build-aux/extract-help -o ci.help ci.c
$ .../rcs-5.9.0/src> echo $?
0

which also generates the correct include line.

In the end, the pkgsrc maintainer decided not to use the generated man-pages at all, but to install the pregenerated ones:

 * Do not make man pages, use shipped version.
   Generating man pages required groff's soelim and pic.

--
 Jörn Clausen                             address@hidden
 Hochschulrechenzentrum                 http://www.uni-bielefeld.de/hrz/
 Universität Bielefeld




reply via email to

[Prev in Thread] Current Thread [Next in Thread]