Albrecht Kadlec wrote, ...
> this is the line:
> XCOMM Template file for Fvwm
>
> I commented out the XCOMM lines from Fvwm.tmpl.
>
> this did more: But I got:
> make: Fatal error in reader: Makefile, line 265: Unexpected end of line seen
> Current working directory /home/vta_host/albrecht/fvwm-2.0.41/sample.fvwmrc
> So I put out the
> InstallNonExecFile(system.fvwmrc,$(FVWMDIR))
> from the Imakefile.
Some time ago, I used to get similar errors in other Imake configurations.
The reason herefore was that, in X11R4 and before, neither XCOMM nor InstallNonExecFile()
used to be defined in imake's config/ files.
Here's what I added (and have since been imake'ing happily fvwm as well as
numerous other imake'ed packages):
______in /usr/lib/X11/config/Imake.tmpl, I added:_____
/*
* InstallNonExecFile - generate rules to install a data file using any special
* install flags
*/
#ifndef InstallNonExecFile
#define InstallNonExecFile(file,dest) _at_@\
install:: file _at_@\
$(INSTALL) -c $(INSTDATFLAGS) file dest
#endif /* InstallNonExecFile */
#ifndef XCOMM
#define XCOMM #
#ifndef /* XCOMM */
#ifndef MakeDir
#define MakeDir(dir) _at_[ -d dir ] || mkdir -p -m 755 dir
#endif /* MakeDir */
#ifndef InstallNamedNonExec
#define InstallNamedNonExec(what,as,where) InstallNonExec(what,where/as)
#endif /* InstallNamedNonExec */
__________________________________________________
That should do it, I think.
Martin
--
| S I E M E N S | Martin.Kraemer_at_mch.sni.de | Siemens Nixdorf
| ------------- | Voice: +49-89-636-46021 | Informationssysteme AG
| N I X D O R F | FAX: +49-89-636-44994 | 81730 Munich, Germany
~~~~~~~~~~~~~~~~ My opinions only, of course; pgp key available on request
--
Visit the official FVWM web page at <URL:http://www.hpc.uh.edu/fvwm/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Fri Feb 23 1996 - 08:47:17 GMT