Re: [NTG-context] error messages after installation

2004-11-23 Thread ab
Taco Hoekwater [EMAIL PROTECTED] writes:

 Hi,
 
 
 How about:
 
   mkdir ($FormatPath) ;
 
 (I cannot test, I do not have a perl that is sufficiently antique to
 test this) 

Hi,

I modified texexec.pl per your suggestion and continue to get the same
error message:

Not enough arguments for mkdir at /usr/people/pm/bin/texexec line 2259,
near $FormatPath) 

[I'm not sure why the error message drops the opening parentheses, but
it is there in the file]

Thanks again for your help.

-- 

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] error messages after installation

2004-11-23 Thread ab
Hans Hagen [EMAIL PROTECTED] writes:

[...]

 can't you update you rperl to 5.8+?

thanks, sorry for the trouble, I'll look into it
-- 

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] error messages after installation

2004-11-22 Thread ab
Taco Hoekwater [EMAIL PROTECTED] writes:

 ab [EMAIL PROTECTED] wrote:
 
  % texexec 041120_testfile.tex
  Not enough arguments for mkdir at /usr/people/pm/bin/texexec line 2259,
  near $FormatPath ;
 
 Can you given us the output perl -v ?

[EMAIL PROTECTED] 39% perl -V
Summary of my perl5 (5.0 patchlevel 4 subversion 5) configuration:
  Platform:
osname=irix, osvers=6.5, archname=irix-n32
uname='irix64 bitbucket 6.5-alpha-1287815120 12010410 ip27 '
hint=recommended, useposix=true, d_sigaction=define
bincompat3=y useperlio=define d_sfio=undef
  Compiler:
cc='cc -n32 -mips3', optimize='-O3 -mips3', gccversion=
cppflags='-D_BSD_SIGNALS -D_BSD_TYPES -D_BSD_TIME
-OPT:Olimit=0:space=ON -DLANGUAGE_C -DEMBEDMYMALLOC'
ccflags ='-D_BSD_SIGNALS -D_BSD_TYPES -D_BSD_TIME -woff
1009,1110,1184 -OPT:Olimit=0:space=ON -DLANGUAGE_C -DEMBEDMYMALLOC'
stdchar='unsigned char', d_stdstdio=define, usevfork=false
intsize=4, longsize=4, ptrsize=undef, doublesize=undef
alignbytes=8, usemymalloc=y, prototype=define
  Linker and Libraries:
ld='cc -n32 -mips3', ldflags ='-n32'
libpth=/usr/lib32 /lib32
libs=-lm
libc=/usr/lib32/libc.so, so=so
useshrplib=true, libperl=libperl.so.5.4.5
  Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=''
cccdlflags='', lddlflags='-n32 -mips3 -shared'


Characteristics of this binary (from libperl): 
  Locally applied patches:
SUIDMAIL - fixes for suidperl security
  Built under irix
  Compiled at Oct 10 2002 02:13:52
  @INC:
/usr/share/lib/perl5/irix-n32/5.00405
/usr/share/lib/perl5
/usr/share/lib/perl5/site_perl/irix-n32
/usr/share/lib/perl5/site_perl
/usr/share/lib/perl5/sgi_perl
.


Thanks for your help.
-- 

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] error messages after installation

2004-11-22 Thread ab
h h extern [EMAIL PROTECTED] writes:

 ab wrote:
  Willi Egger [EMAIL PROTECTED] writes:
 
 TEXEXEC is way too old. The current version is above 5!
 After updating your context it appears that it uses still a very
 outdated version of texexec. I advise you to update your tex-system
 from CTAN (http://www.tug.org/interest.html).
  Hi, I am trying to keep my context up-to-date, and so I installed the
  new cont-tmf in my ~/texmf directory, and I get the following:
  % texexec 041120_testfile.tex
  Not enough arguments for mkdir at /usr/people/pm/bin/texexec line 2259,
  near $FormatPath ;
  Execution of /usr/people/pm/bin/texexec aborted due to compilation
  errors.
 
 there should be something:
 
  if ($UseEnginePath  ($FormatPath ne ''  ($FormatPath !~
 /$EnginePath\/$/))) {
  $FormatPath .= $EnginePath . '/' ;
  unless (-d $FormatPath) {
  mkdir $FormatPath ;
  }
  }

That is what I have, assuming whitespace, linebreaks and indentation
are unimportant (please forgive my ignorance).

Thank you for your help
-- 

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] error messages after installation

2004-11-22 Thread ab
Hans Hagen [EMAIL PROTECTED] writes:

[...]

 ah, thanks for looking into it, i changed the code to:
 
  if ($UseEnginePath  ($FormatPath ne ''  ($FormatPath !~
 /$EnginePath\/$/))) {
  $FormatPath .= $EnginePath ;
  unless (-d $FormatPath) {
  mkdir $FormatPath ;
  }
  $FormatPath .= '/' ;
  }

Hi,

I changed my texexec.pl to read 

if ($UseEnginePath  ($FormatPath ne ''  ($FormatPath !~
/$EnginePath\/$/))) {
$FormatPath .= $EnginePath ;
unless (-d $FormatPath) {
mkdir $FormatPath ;
}
$FormatPath .= '/';
}

return $FormatPath;
}

and I still get the error:

[EMAIL PROTECTED] 62% texexec 041121_table.tex
Not enough arguments for mkdir at /usr/people/pm/bin/texexec line 2259,
near $FormatPath ;
Execution of /usr/people/pm/bin/texexec aborted due to compilation
errors.

Thank-you
-- 

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] error messages after installation

2004-11-21 Thread ab
Willi Egger [EMAIL PROTECTED] writes:

 TEXEXEC is way too old. The current version is above 5!
 After updating your context it appears that it uses still a very
 outdated version of texexec. I advise you to update your tex-system
 from CTAN (http://www.tug.org/interest.html).

Hi, I am trying to keep my context up-to-date, and so I installed the
new cont-tmf in my ~/texmf directory, and I get the following:

% texexec 041120_testfile.tex
Not enough arguments for mkdir at /usr/people/pm/bin/texexec line 2259,
near $FormatPath ;
Execution of /usr/people/pm/bin/texexec aborted due to compilation
errors.

My previous context was from 2003-12-18 and my tex is tetex 2.0.2. This
is on Irix 6.5. 

I have no sense of what to do to fix this error, any advice will be
appreciated. 

rb
-- 

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context