aboutsummaryrefslogtreecommitdiff
path: root/japanese/groff
diff options
context:
space:
mode:
authorOKAZAKI Tetsurou <okazaki@FreeBSD.org>2004-02-16 12:37:01 +0000
committerOKAZAKI Tetsurou <okazaki@FreeBSD.org>2004-02-16 12:37:01 +0000
commit7a6bbfdafe2e32a03ac67d0f9f39b83a9e4ab81f (patch)
tree3ae340622dfd33054f7f713ded5f0cebe2042241 /japanese/groff
parent3f9f67c5ab57a1a5485500138f804004fcbd4726 (diff)
downloadports-7a6bbfdafe2e32a03ac67d0f9f39b83a9e4ab81f.tar.gz
ports-7a6bbfdafe2e32a03ac67d0f9f39b83a9e4ab81f.zip
Fix the bug of a make rule in the install-links target that installs
invalid symbolic links into ${PREFIX}/bin. Bump up PORTREVISION. Submitted by: taku-san and otsune-san
Notes
Notes: svn path=/head/; revision=101049
Diffstat (limited to 'japanese/groff')
-rw-r--r--japanese/groff/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/japanese/groff/Makefile b/japanese/groff/Makefile
index 515f1fbd7f11..81f6e4438ba2 100644
--- a/japanese/groff/Makefile
+++ b/japanese/groff/Makefile
@@ -7,7 +7,7 @@
PORTNAME= groff
PORTVERSION= 1.18.1
-PORTREVISION= 5
+PORTREVISION= 6
CATEGORIES= japanese print
MASTER_SITES= ${MASTER_SITE_LOCAL:S,%SUBDIR%,okazaki/&,} \
${MASTER_SITE_DEBIAN:S,$,:debian,}
@@ -142,7 +142,7 @@ install-info:
install-links:
.for F in eqn neqn pic tbl
- ${LN} -sf ${FILE} ${PREFIX}/bin/g${F}
+ ${LN} -sf ${F} ${PREFIX}/bin/g${F}
.endfor
.include <bsd.port.post.mk>