diff options
author | riggs <riggs@FreeBSD.org> | 2016-11-06 18:49:03 +0800 |
---|---|---|
committer | riggs <riggs@FreeBSD.org> | 2016-11-06 18:49:03 +0800 |
commit | 6da183e941a29713fd416acae6a813b1bf516cdb (patch) | |
tree | 814010b17ce07d2b1faf2fe4ad5ed333c9a87ad4 /news | |
parent | 483d19a584a075a9c75075525ef6ad259a7e9616 (diff) | |
download | freebsd-ports-gnome-6da183e941a29713fd416acae6a813b1bf516cdb.tar.gz freebsd-ports-gnome-6da183e941a29713fd416acae6a813b1bf516cdb.tar.zst freebsd-ports-gnome-6da183e941a29713fd416acae6a813b1bf516cdb.zip |
Fix character encoding issues
Details:
- port now defaults to en_US.UTF-8 for LC_CTYPE
- Bump PORTREVISION
PR: 212993
Submitted by: joshruehlig@gmail.com (maintainer)
MFH: 2016Q4
Diffstat (limited to 'news')
-rw-r--r-- | news/sabnzbdplus/Makefile | 1 | ||||
-rw-r--r-- | news/sabnzbdplus/files/sabnzbd.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/news/sabnzbdplus/Makefile b/news/sabnzbdplus/Makefile index c86c23dc014a..05db566883c1 100644 --- a/news/sabnzbdplus/Makefile +++ b/news/sabnzbdplus/Makefile @@ -2,6 +2,7 @@ PORTNAME= sabnzbdplus PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= news MASTER_SITES= SF DISTNAME= SABnzbd-${PORTVERSION}-src diff --git a/news/sabnzbdplus/files/sabnzbd.in b/news/sabnzbdplus/files/sabnzbd.in index 9dbfb5ede86d..6de8a0542f1a 100644 --- a/news/sabnzbdplus/files/sabnzbd.in +++ b/news/sabnzbdplus/files/sabnzbd.in @@ -46,7 +46,7 @@ command_args="--daemon -f ${sabnzbd_conf_dir}/sabnzbd.ini --pidfile ${pidfile}" sabnzbd_prestart() { PATH=${PATH}:%%PREFIX%%/bin:%%PREFIX%%/sbin - export LC_CTYPE="UTF-8" + export LC_CTYPE="en_US.UTF-8" for sabdir in ${sabnzbd_conf_dir} ${pidfile%/*}; do if [ ! -d "${sabdir}" ]; then install -d -o ${sabnzbd_user} -g ${sabnzbd_group} ${sabdir} |