On Mon, Feb 10, 2003 at 06:40:59PM +0100, Martin MOKREJ? wrote: > I've tried to compile current TeTex on Tru64Unix 5.1A with latest > version of compilers from Compaq/HP, and I got the error below. Please, cc > me in any replies. > > [build errors snipped] > > The @sys is AFS kernel variable, which is not expanded by shell, by kernel > itself. However, it broke configure. I know automake has been fixed > recently to treat properly this variable (actually not to break on `@' > sign. Maybe this is the same problem, I don't know, maybe it's enough to > recreate configure with never auto* tools.
We also build with @sys (for a customer). Try the patch below. -- albert chin ([EMAIL PROTECTED]) -- snip snip --- texk/kpathsea/Makefile.in.orig Mon Feb 3 08:24:08 2003 +++ texk/kpathsea/Makefile.in Tue Feb 4 00:32:26 2003 @@ -123,8 +116,8 @@ sed -e 's/%.*//' -e 's/^[ ]*//' -e 's/[ ]*$$//' texmf.cnf \ | grep '^[ ]*[A-Z0-9_]*[ =]' \ | sed '/^$$/d' \ - | sed 's/^\([^ =]*\)[ ]*=*[ ]*\(.*\)/#ifndef DEFAULT_\1@#define DEFAULT_\1 "\2"@#endif/' \ - | tr '@' '\012' \ + | sed 's/^\([^ =]*\)[ ]*=*[ ]*\(.*\)/#ifndef DEFAULT_\1~#define DEFAULT_\1 +"\2"~#endif/' \ + | tr '~' '\012' \ | sed -e 's%\$$TEXMFMAIN%$(texmf)%g' \ -e 's%\$$TEXMF%$(texmf)%g' \ -e 's%\$$VARTEXFONTS%$(vartexfonts)%g' \