From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/8155 Path: main.gmane.org!not-for-mail From: Taco Hoekwater Newsgroups: gmane.comp.tex.context Subject: Re: newbi: config Date: Thu, 6 Jun 2002 10:24:38 +0200 Sender: owner-ntg-context@let.uu.nl Message-ID: <20020606102438.4f4c5159.taco@elvenkind.com> References: <5.1.0.14.1.20020605220451.032337f8@server-1> 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 1035398583 25174 80.91.224.250 (23 Oct 2002 18:43:03 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 18:43:03 +0000 (UTC) Cc: pragma@wxs.nl, ntg-context@ntg.nl Original-To: "Tobias Burnus" In-Reply-To: Xref: main.gmane.org gmane.comp.tex.context:8155 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:8155 On Thu, 6 Jun 2002 09:55:11 +0200 (CEST) "Tobias Burnus" wrote: > Hi Hans, > > > how does the message look like? > $pm_path = $0 ; > print "\nDEBUG 1: $pm_path\n"; > $pm_path =~ s/\\/\//o ; > print "\nDEBUG 2: $pm_path\n"; > $pm_path =~ s/texutil\.pl.*//io ; Hans, you should change this regexp above into: $pm_path =~ s/texutil(\.pl)?.*//i ; or even $pm_path =~ s/texutil.*?$//i ; -- groeten, Taco