Re: [Fink-devel] install_name perl script

2003-01-28 Thread Finlay Dobbie
On Tuesday, January 28, 2003, at 10:17 pm, Chris Zubrzycki wrote: On Tuesday, January 28, 2003, at 12:04 AM, Jeremy Erwin wrote: Hmm, after I fixed a spurious newline that my test editor had added in the midst of `/usr/bin/install_name_tool -change $File::Find::name $newlibrary $_\n`;,

Re: [Fink-devel] install_name perl script

2003-01-28 Thread Chris Zubrzycki
On Tuesday, January 28, 2003, at 05:41 PM, Finlay Dobbie wrote: On Tuesday, January 28, 2003, at 10:17 pm, Chris Zubrzycki wrote: On Tuesday, January 28, 2003, at 12:04 AM, Jeremy Erwin wrote: Hmm, after I fixed a spurious newline that my test editor had added in the midst of

[Fink-devel] install_name perl script

2003-01-27 Thread Ben Hines
On Monday, January 27, 2003, at 01:22 PM, Jeremy Erwin wrote: Parentheses missing around my list at ./fixlib line 4. Useless use of a variable in void context at ./fixlib line 4. Is perl 5.8 stricter about this or something? I have: my $newlibrary, @liblist, $libdir = /usr/X11R6/lib; -Ben

Re: [Fink-devel] install_name perl script

2003-01-27 Thread Randal L. Schwartz
Ben == Ben Hines [EMAIL PROTECTED] writes: Ben On Monday, January 27, 2003, at 01:22 PM, Jeremy Erwin wrote: Parentheses missing around my list at ./fixlib line 4. Useless use of a variable in void context at ./fixlib line 4. Ben Is perl 5.8 stricter about this or something? Ben I have:

Re: [Fink-devel] install_name perl script

2003-01-27 Thread Ben Hines
On Monday, January 27, 2003, at 06:41 PM, Randal L. Schwartz wrote: my $newlibrary; my @liblist; my $libdir = /usr/X11R6/lib; then you'll have to say that. No simple addition of parens will help you. What you're saying now is the same as leaving the second and third my off, and

Re: [Fink-devel] install_name perl script

2003-01-27 Thread Jeremy Erwin
On Monday, January 27, 2003, at 10:09 PM, Ben Hines wrote: On Monday, January 27, 2003, at 06:41 PM, Randal L. Schwartz wrote: my $newlibrary; my @liblist; my $libdir = /usr/X11R6/lib; then you'll have to say that. No simple addition of parens will help you. What you're