On Thu, 3 Oct 2002 [EMAIL PROTECTED] wrote: > Anyone out there had problems with syntax errors in Makefile generated > xmakefile scripts when attempting to compile under s390?
No, but I've had the exact same problem with IRIX 6.5.. Lemme guess, your rules are all space-indented instead of tabs? make really hates that.. The problem seems to be with the imake that is provided with Xvnc; best to use the one provided with the system (at least, it was for me..) You'd think all that needs be done is to redefine the $(IMAKE) variable in the top-level Makefile to your system's imake location, but you'd be so very, very wrong. If you don't believe me, just try it.. =) What I did was to symlink the system's imake in the config/imake directory as "imake.real", then set the $(IMAKE) variable to "imake.real", like so: IMAKE = $(IMAKESRC)/imake.real That way you don't have to worry about the dozens of times imake is called as "../$(IMAKE)" throughout the build. Good luck, -- Nicolas Simonds In Google non est, ergo non est. If it is not on Google, then it does not exist. _______________________________________________ VNC-List mailing list [EMAIL PROTECTED] http://www.realvnc.com/mailman/listinfo/vnc-list
