Re: sed error in perl Makefile.pl

2003-01-03 Thread dom
I have to rebuild my perl and go through the Configure process to tell it to ignore `hostname`, unless you know a trick for that, too! Well, what about creating a custom shell script named hostname, turn it executable, and put it somewhere in your PATH ? #!/bin/sh echo darkstar.frop.org --

sed error in perl Makefile.pl

2003-01-02 Thread J Q Private
Hi mod_perlers from josh narins! I'm following the simple instructions for the 1.x series with APACI I'm on a debian sarge system running linux kernel 2.4.20 on a powerpc I've seen this same error with bleadperl (built today) and the installed perl5.6.1 (the debian package) Sadly, I also

Re: sed error in perl Makefile.pl

2003-01-02 Thread Stas Bekman
[...] When I run perl Makefile.PL APACHE_SRC=../apache_1.3.xx/src \ DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 \ APACHE_PREFIX=/home/user/httpd/apache I see this (note the sed error) (cd ../apache_1.3.27 CC=gcc CFLAGS= -D_REENTRANT -DTHREADS_HAVE_PIDS -fno-

Re: sed error in perl Makefile.pl

2003-01-02 Thread J Q Private
It ended up being the bad character tacked returned by my . It sometimes looks like 'nyc.rr.com\000' or the like. Bad DHCP setup on my part. Here's the a couple lines out of the offending sed. -e s%@conf_serveradmin@[EMAIL PROTECTED]%d00%g -e s%@conf_servername@%float1.nyc.rr.com%d00%g Thanks