diff options
author | obrien <obrien@FreeBSD.org> | 1996-12-22 14:53:00 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1996-12-22 14:53:00 +0800 |
commit | a1520694dbb1c8eb789acf64c9d76f9a06157229 (patch) | |
tree | 6659fbff64db5fe00ea3d956d20b3b85b8b04f4f /mail/elm+ME | |
parent | 089089132e18de49dd0df9519b4b02e00d03cf79 (diff) | |
download | freebsd-ports-gnome-a1520694dbb1c8eb789acf64c9d76f9a06157229.tar.gz freebsd-ports-gnome-a1520694dbb1c8eb789acf64c9d76f9a06157229.tar.zst freebsd-ports-gnome-a1520694dbb1c8eb789acf64c9d76f9a06157229.zip |
Make the pre-configure script respect ${PREFIX}
Closes PR: ports/2039
Diffstat (limited to 'mail/elm+ME')
-rw-r--r-- | mail/elm+ME/scripts/pre-configure | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mail/elm+ME/scripts/pre-configure b/mail/elm+ME/scripts/pre-configure index d70a2a8b3c50..11c7cdf0b94d 100644 --- a/mail/elm+ME/scripts/pre-configure +++ b/mail/elm+ME/scripts/pre-configure @@ -1,7 +1,7 @@ #!/bin/sh - # # pre-configure script for Elm port to FreeBSD 2.0 -# $Id: pre-configure,v 1.13 1996/10/03 19:08:13 ache Exp $ +# $Id: pre-configure,v 1.14 1996/10/25 00:31:11 ache Exp $ PortsDir=$PORTSDIR CurDir=$CURDIR @@ -14,7 +14,7 @@ PortsDir=$PORTSDIR Log='$Log' Header='$Header' -bin='/usr/local/bin' +bin="$PREFIX/bin" contains='grep' cppstdin='/usr/bin/cpp' cppminus='' @@ -105,7 +105,7 @@ vi ' test='/bin/test' inews='' -ispell='/usr/local/bin/ispell' +ispell="$PREFIX/bin/ispell" egrep='' more='/usr/bin/more' pg='pg' @@ -178,7 +178,7 @@ termlib='-ltermlib' d_index='undef' d_internet='define' d_ispell='define' -ispell_path='/usr/local/bin/ispell' +ispell_path="$PREFIX/bin/ispell" ispell_options='' d_locale='define' d_nl_types='define' @@ -250,14 +250,14 @@ d_systimekernel='undef' i_unistd='define' i_utime='define' i_sysutime='undef' -lib='/usr/local/lib' +lib="$PREFIX/lib" libc='/usr/lib/libc.so.3.0' linepr='/usr/bin/lp' maildir='/var/mail' mailer='/usr/sbin/sendmail' mailgrp='bin' -mansrc='/usr/local/man/man1' -catmansrc='/usr/local/man/cat1' +mansrc="$PREFIX/man/man1" +catmansrc="$PREFIX/man/cat1" manext='.1' manext_choice='.1' catmanext='.1' @@ -299,8 +299,8 @@ xenlf='' d_xenix='undef' d_bsd='define' d_pgp='define' -pgp='/usr/local/bin/pgp' -pgp_path='/usr/local/bin/pgp' +pgp="$PREFIX/bin/pgp" +pgp_path="$PREFIX/bin/pgp" d_remailer='define' finger='/usr/bin/finger' finger_path='/usr/bin/finger' |