[CM] Pointers into snd-help source?

Charles Turner vze26m98@optonline.net
Thu, 15 Mar 2007 18:57:51 -0400


Michael Scholz wrote on 3/11/07 at 9:48 PM

>> 2) The "make install" process quits because my computer doesn't like
>> your "install info" command arguments. As a result, I think none of
>> the .fs, .fr, etc files get installed, and I had to manually copy
>> them to their directories. Also manually installed the FTH info
>> pages.
>
>doc/Makefile uses `install-info --info-dir=dir --info-file=file'
>
>What option is wrong or what options knows your install-info?  In the
>meantime, remove the last line at target install in doc/Makefile or
>better in doc/Makefile.in before ./configure or ./config.status.

Hi Michael-

Here's the output of my FTH "make install" where install-info quits and
kills the rest of the make:

makeinfo ${FTH_MAKEINFO_OPTIONS} fth.texi
info_file=`basename ./fth.info`; \
if test ! -f ${info_file}; then info_file=./fth.info; fi; \
list=`echo ${info_file}*`; \
for f in ${list}; do \
    ff=`basename ${f}`; \
    /usr/bin/install -c -m 0644 ${f} /usr/local/share/info/${ff}; \
done ; \
install-info --info-dir=/usr/local/share/info --info-file=${info_file}
Debian install-info 1.10.21.  Copyright (C) 1994,1995
Ian Jackson.  This is free software; see the GNU General Public Licence
version 2 or later for copying conditions.  There is NO warranty.

usage: install-info [--version] [--help] [--debug] [--maxwidth=nnn]
             [--section regexp title] [--infodir=xxx] [--align=nnn]
             [--calign=nnn] [--quiet] [--menuentry=xxx] [--info-dir=xxx]
             [--keep-old] [--description=xxx] [--test]
             [--remove | --remove-exactly ] [--dir-file]
             [--]
             filename
make[1]: *** [install] Error 1
make: *** [install] Error 2

Looks like the variable ${info_file} isn't being set to the correct
value?

Best, Charles

<vze26m98@optonline.net>