diff options
author | obrien <obrien@FreeBSD.org> | 2003-11-13 02:03:36 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-11-13 02:03:36 +0800 |
commit | 7da9ab8b689cdf32eb47a74b2786c0909e9c5a53 (patch) | |
tree | 7302ff5fb16230ee1aaa4f3d7fbaceb082615bac /news | |
parent | 70b0ca8c9e593412a042e8d4da15c3db4c126817 (diff) | |
download | freebsd-ports-gnome-7da9ab8b689cdf32eb47a74b2786c0909e9c5a53.tar.gz freebsd-ports-gnome-7da9ab8b689cdf32eb47a74b2786c0909e9c5a53.tar.zst freebsd-ports-gnome-7da9ab8b689cdf32eb47a74b2786c0909e9c5a53.zip |
Allow the default compiled-in editor to be easily changed.
Diffstat (limited to 'news')
-rw-r--r-- | news/tin/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/news/tin/Makefile b/news/tin/Makefile index eb6edbcfad11..1ef2dfeb9cfb 100644 --- a/news/tin/Makefile +++ b/news/tin/Makefile @@ -24,6 +24,7 @@ LIB_DEPENDS= uu.2:${PORTSDIR}/converters/uulib \ USE_BZIP2= yes USE_GMAKE= yes GNU_CONFIGURE= yes +TIN_EDITOR?= /usr/bin/ee # --with-mime-default-charset=US-ASCII needed to build tin in the non-ascii # national environment. @@ -31,7 +32,7 @@ CONFIGURE_ARGS= --with-nntp-default-server=news \ --with-spooldir=/var/news \ --with-libdir=${PREFIX}/news/lib \ --with-defaults-dir=${PREFIX}/etc \ - --with-editor=/usr/bin/ee \ + --with-editor=${TIN_EDITOR} \ --enable-nls \ --with-pcre=yes \ --with-screen=ncurses \ |