From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/8040 Path: main.gmane.org!not-for-mail From: Siep Newsgroups: gmane.comp.tex.context Subject: Re: texexec & teTeX Date: Mon, 27 May 2002 09:33:59 +0200 Sender: owner-ntg-context@let.uu.nl Message-ID: <20020527093359.6b3364f9.siep@elvenkind.com> References: <200205261510.36685.ishamid@attbi.com> Reply-To: siep@elvenkind.com NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1035398475 24320 80.91.224.250 (23 Oct 2002 18:41:15 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 18:41:15 +0000 (UTC) Original-To: ntg-context@ntg.nl In-Reply-To: <200205261510.36685.ishamid@attbi.com> Xref: main.gmane.org gmane.comp.tex.context:8040 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:8040 On Sun, 26 May 2002 15:10:36 -0600 "Idris S Hamid" wrote: > Dear folks, > > I'm in the process of migrating to Linux (Suse 8.0) and I'm having > some problems getting texexec to behave:-) > > Updating to the latest official ConTeXt I place the appropriate > perl scripts in > /usr/TeX/bin/i386-linux > eliminating the .pl extension as suggested in minstall. This is > what happens: > > # texexec --make > `texexec.pl' not found. In later versions of teTeX, texexec is a little script that tries to find and run the real texexec.pl in the texmf/context/perltk directory: #!/bin/sh what=`echo $0 | sed 's@.*/@@'` p=`kpsewhich -progname=context -format='other text files' $what.pl` { test -n "$p" && test -f "$p"; } \ || { echo "\`$what.pl' not found."; exit 1; } perl "$p" "$@" If your version of teTeX works this way, then you should leave the perl scripts where they are, under their original name, and you should also leave the teTeX version of texexec and the various symlinks to it alone. Siep