diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
commit | 5281212be38447df70380d4e9e8cd0ef1cf11517 (patch) | |
tree | 655e734faae358d2c0edeefd08e9aeac6202b150 /korean | |
parent | Assign USE_XLIB var. Any ports which use XLib needs it. (diff) |
chmod -> ${CHMOD}
chown -> ${CHOWN}
Notes
Notes:
svn path=/head/; revision=20885
Diffstat (limited to 'korean')
-rw-r--r-- | korean/hanemacs/Makefile | 4 | ||||
-rw-r--r-- | korean/nh2ps/Makefile | 4 | ||||
-rw-r--r-- | korean/pgp.language/Makefile | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/korean/hanemacs/Makefile b/korean/hanemacs/Makefile index a321d5fb87c6..2e6de5a9c7ca 100644 --- a/korean/hanemacs/Makefile +++ b/korean/hanemacs/Makefile @@ -3,7 +3,7 @@ # Date created: 12 Mar 1998 # Whom: CHOI Junho <junker@jazz.snu.ac.kr> # -# $Id: Makefile,v 1.5 1999/06/05 22:30:19 mharo Exp $ +# $Id: Makefile,v 1.6 1999/06/22 16:46:14 steve Exp $ # DISTNAME= hanemacs-19.34b-1 @@ -43,7 +43,7 @@ post-install: .endfor # install emacs.sh into ${PREFIX}/etc/rc.d ${MKDIR} /var/run/emacs/lock - chmod 1777 /var/run/emacs/lock + ${CHMOD} 1777 /var/run/emacs/lock @${MKDIR} ${PREFIX}/etc/rc.d @${INSTALL_SCRIPT} ${FILESDIR}/emacs.sh ${PREFIX}/etc/rc.d diff --git a/korean/nh2ps/Makefile b/korean/nh2ps/Makefile index 02c3d69843c3..317e14d2ecca 100644 --- a/korean/nh2ps/Makefile +++ b/korean/nh2ps/Makefile @@ -3,7 +3,7 @@ # Date created: 2 Apr 1997 # Whom: Choi Jun Ho <junker@jazz.snu.ac.kr> # -# $Id: Makefile,v 1.6 1998/10/16 02:43:27 jseger Exp $ +# $Id: Makefile,v 1.7 1998/12/05 10:35:17 kuriyama Exp $ # DISTNAME= nh2ps-2.3.1 @@ -21,7 +21,7 @@ post-patch: @(cd ${WRKSRC}; \ ${SED} s@/usr/local/bin/perl@${PERL5}@ mkpsfontmap.pl > mk.pl; \ ${MV} -f mk.pl mkpsfontmap.pl; \ - chmod +x mkpsfontmap.pl) + ${CHMOD} +x mkpsfontmap.pl) pre-install: @(cd ${WRKSRC}; make install.man) diff --git a/korean/pgp.language/Makefile b/korean/pgp.language/Makefile index 72b25edb8d37..01cced7d6286 100644 --- a/korean/pgp.language/Makefile +++ b/korean/pgp.language/Makefile @@ -3,7 +3,7 @@ # Date created: 22 Jul 1998 # Whom: CHOI Junho <cjh@kr.freebsd.org> # -# $Id: Makefile,v 1.4 1999/05/01 12:34:32 jseger Exp $ +# $Id: Makefile,v 1.5 1999/07/22 04:39:57 cpiazza Exp $ # # This is based on ja-pgp. # @@ -35,8 +35,8 @@ OBJS= language.txt ${PGP_LANG}.hlp README.${PGP_LANG} \ do-install: -[ -d ${PGPLIB} ] || { \ ${MKDIR} ${PGPLIB} ; \ - chown bin.bin ${PGPLIB} ; \ - chmod 555 ${PGPLIB} ; } + ${CHOWN} bin.bin ${PGPLIB} ; \ + ${CHMOD} 555 ${PGPLIB} ; } -[ -f ${PGPLIB}/language.txt ] && \ ${MV} ${PGPLIB}/language.txt ${PGPLIB}/language.txt.bak @cd ${WRKDIR}; \ |