diff options
author | obrien <obrien@FreeBSD.org> | 2001-06-01 14:05:18 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-06-01 14:05:18 +0800 |
commit | 5fbdb9eb0f20e0bf319c3078565e89327fea6f28 (patch) | |
tree | 124f40f80f2740ea1355e840ece3af488cba8e9f /japanese/postgresql | |
parent | 80694907888be0ceded66ec7b99fb002c6e7afbe (diff) | |
download | freebsd-ports-gnome-5fbdb9eb0f20e0bf319c3078565e89327fea6f28.tar.gz freebsd-ports-gnome-5fbdb9eb0f20e0bf319c3078565e89327fea6f28.tar.zst freebsd-ports-gnome-5fbdb9eb0f20e0bf319c3078565e89327fea6f28.zip |
Use proper POSIX syntax for `chown'.
Diffstat (limited to 'japanese/postgresql')
-rw-r--r-- | japanese/postgresql/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/japanese/postgresql/Makefile b/japanese/postgresql/Makefile index e6f4c60fabc4..2486c3c1fab3 100644 --- a/japanese/postgresql/Makefile +++ b/japanese/postgresql/Makefile @@ -160,7 +160,7 @@ post-install: @ ${SED} "s=!!PG_PATH!!=${PREFIX}/${INSTALL_DIR}=g ; s=!!PGSQL_UID!!=${PGSQL_UID}=g" \ < ${FILESDIR}/pgsql.sh.tmpl > ${PREFIX}/etc/rc.d/pgsql.sh @ ${CHMOD} 554 ${PREFIX}/etc/rc.d/pgsql.sh - @ ${CHOWN} root.${PGSQL_GID} ${PREFIX}/etc/rc.d/pgsql.sh + @ ${CHOWN} root:${PGSQL_GID} ${PREFIX}/etc/rc.d/pgsql.sh @ ${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/${INSTALL_DIR} .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/${INSTALL_DIR} |