diff options
author | max <max@FreeBSD.org> | 1997-07-21 19:21:06 +0000 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-07-21 19:21:06 +0000 |
commit | e78fe142470b2d42049dd282a53e4868b4de17a9 (patch) | |
tree | af568594c6ce8ae96339b5fdf2bfe9c01af060b1 /korean/han | |
parent | ba6ffe37757382a1efe7aca6755b0a3023bdc121 (diff) | |
download | FreeBSD-ports-e78fe142470b2d42049dd282a53e4868b4de17a9.zip FreeBSD-ports-e78fe142470b2d42049dd282a53e4868b4de17a9.tar.gz |
sed -> ${SED}.
files/* -> ${FILESDIR}/*.
Diffstat (limited to 'korean/han')
-rw-r--r-- | korean/han/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/korean/han/Makefile b/korean/han/Makefile index 79838cb..4a82ffc 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> |