diff options
-rw-r--r-- | chinese/big5con/Makefile | 6 | ||||
-rw-r--r-- | japanese/kon2-16dot/Makefile | 6 | ||||
-rw-r--r-- | korean/han/Makefile | 10 |
3 files changed, 11 insertions, 11 deletions
diff --git a/chinese/big5con/Makefile b/chinese/big5con/Makefile index b716dd9d9c6a..885ed07fe95b 100644 --- a/chinese/big5con/Makefile +++ b/chinese/big5con/Makefile @@ -3,7 +3,7 @@ # Date created: 07 Jan 1997 # Whom: Hung-Chi Chu <hcchu@r350.ee.ntu.edu.tw> # -# $Id: Makefile,v 1.1.1.1 1997/02/16 01:14:03 obrien Exp $ +# $Id: Makefile,v 1.2 1997/02/17 20:33:32 obrien Exp $ # # This port is adapted from japanese/kon # @@ -28,10 +28,10 @@ EXTRACT_ONLY= kon-0.99.4e.tgz USE_GMAKE= yes post-configure: - sed -e 's%%CURDIR%%${.CURDIR}' \ + ${SED} -e 's%%CURDIR%%${.CURDIR}' \ -e 's%%PREFIX%%${PREFIX}' \ -e 's%%DISTDIR%%${DISTDIR}' \ - files/dotconfig > ${WRKSRC}/.config + ${FILESDIR}/dotconfig > ${WRKSRC}/.config post-install: @echo diff --git a/japanese/kon2-16dot/Makefile b/japanese/kon2-16dot/Makefile index 1826a2c48cff..4300d62f80a4 100644 --- a/japanese/kon2-16dot/Makefile +++ b/japanese/kon2-16dot/Makefile @@ -3,7 +3,7 @@ # Date created: 11 Apr 1997 # Whom: Makoto Matsushita <matusita@jp.freebsd.org> # -# $Id: Makefile,v 1.1.1.1 1997/06/04 09:29:13 asami Exp $ +# $Id: Makefile,v 1.10 1997/07/10 13:14:50 max Exp $ # DISTNAME= kon2-0.3 @@ -23,9 +23,9 @@ EXTRACT_ONLY= kon2-0.3.tar.gz DOCDIR= ${PREFIX}/share/doc/kon2 pre-build: - sed -e 's,%%PREFIX%%,${PREFIX},' \ + ${SED} -e 's,%%PREFIX%%,${PREFIX},' \ -e 's,%%DISTDIR%%,${DISTDIR},' \ - files/dotconfig > ${WRKSRC}/.config + ${FILESDIR}/dotconfig > ${WRKSRC}/.config @(cd ${WRKSRC}; ${MAKE} -f Makefile.FreeBSD config) post-install: diff --git a/korean/han/Makefile b/korean/han/Makefile index 79838cbc75f2..4a82ffc402a4 100644 --- a/korean/han/Makefile +++ b/korean/han/Makefile @@ -3,7 +3,7 @@ # Date created: 12 Apr 1997 # Whom: Choi Jun Ho <junker@jazz.snu.ac.kr> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1997/06/04 08:12:07 asami Exp $ # DISTNAME= han-1.0fb @@ -16,13 +16,13 @@ MAINTAINER= junker@jazz.snu.ac.kr USE_GMAKE= yes post-configure: - sed -e 's%%WRKSRC%%${WRKSRC}' \ + ${SED} -e 's%%WRKSRC%%${WRKSRC}' \ -e 's%%PREFIX%%${PREFIX}' \ -e 's%%DISTDIR%%${DISTDIR}' \ - files/dotconfig > ${WRKSRC}/.config - sed -e 's%%WRKSRC%%${WRKSRC}' \ + ${FILESDIR}/dotconfig > ${WRKSRC}/.config + ${SED} -e 's%%WRKSRC%%${WRKSRC}' \ -e 's%%PREFIX%%${PREFIX}' \ -e 's%%DISTDIR%%${DISTDIR}' \ - files/han.sh > ${WRKSRC}/han.sh + ${FILESDIR}/han.sh > ${WRKSRC}/han.sh .include <bsd.port.mk> |