IDependOn-Set: 1
IDependOn-Set: 13
IDependOn-Set: 15
IDependOn-Set: 2
IDependOn-Set: 281
IDependOn-Set: 294
IDependOn-Set: 302
LastModifiedSecs: 935601699
Parent: 15
SequenceNumber: 3
Title: sed: Function cannot be parsed
Part: 0
Author-Set: jonathan.pardue@attws.com
LastModifiedSecs: 935601699
Type: monospaced
Lines: 26
When running configure under HPUX-10.20, I got this message:

  sed: Function s%@ACLOCAL@%/my/dir/apache/ApacheJServ-1.0/src/scripts/build/unix cannot be parsed.

The problem boiled down to this line (line 839 in my copy of
configure for the 1.3.9 distribution):

  missing_dir=`cd $ac_aux_dir && pwd`

It turns out that under the shell I'm using (zsh, although
the script invokes #!/bin/sh) the "cd" command changes directory
and issues a "pwd" automatically, so the above line essentially
concatenates two copies of a directory name with a newline in
between them.

To fix this, I had to change the line to:

  missing_dir=`cd $ac_aux_dir`

Hope this helps!

- Jon
--
Jonathan Pardue
AT&T Wireless Services, Inc.
jonathan.pardue@attws.com
EndPart: 0
