Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Apr 2001 13:28:04 -0500
From:      Lucas Bergman <lucas@slb.to>
To:        Drew Tomlinson <drewt@writeme.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: OT: FrontPage Extensions on Apache
Message-ID:  <20010404132804.B8238@billygoat.slb.to>
In-Reply-To: <BA5D0CE1CBB2D411B6AA00A0CC3F02390AF92B@ldcmsx01.lc.ca.gov>; from drewt@writeme.com on Wed, Apr 04, 2001 at 10:58:51AM -0700
References:  <BA5D0CE1CBB2D411B6AA00A0CC3F02390AF92B@ldcmsx01.lc.ca.gov>

next in thread | previous in thread | raw e-mail | index | archive | help
> [blah, blah, blah...]
>
> EAPI_MM="/path/to/mm-1.1.3" SSL_BASE="/path/to/openssl-0.9.6"
> ./configure \ --"then continue with various options"
> 
> When I attempted to run such a command, I received an error stating
> "EAPI_MM="/path/to/mm-1.1.3: Command not found."

I don't know anything about FrontPage (mostly since it's a security
nightmare), but I think your problem lies in the failed command above.

You're using csh, right?  (By default, root does.)  The command above
works for Bourne-derived shells, but not for csh-derived shells.  Try
the equivalent:

  env EAPI_MM="/path/to/mm-1.1.3" SSL_BASE="/path/to/openssl-0.9.6" \
    ./configure \
    # configure options...

That should work with any shell.

Lucas

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010404132804.B8238>