diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 01:58:05 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 01:58:05 +0000 |
commit | af5f314286ac9e406765f8c4bdc4a1cad6826c8e (patch) | |
tree | 656442e4eb4e7a3efb0e0b1776eb4220f3f5ba72 /devel/ilu | |
parent | 17314cf2c355c83b78c65fb1fa52027a3db2ca2a (diff) |
Notes
Diffstat (limited to 'devel/ilu')
-rw-r--r-- | devel/ilu/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/ilu/Makefile b/devel/ilu/Makefile index fc57d73603a3..4cb4534ff2e9 100644 --- a/devel/ilu/Makefile +++ b/devel/ilu/Makefile @@ -75,11 +75,11 @@ do-install: (cd ${PREFIX} ; find ilu -type d) | ${AWK} '{print "@dirrm " $$1}' \ | tail -r | ${GREP} -v lib/binding >> ${PLIST} (cd ${PREFIX}/ilu/bin ; for file in * ; do \ - ln -fs ${PREFIX}/ilu/bin/$$file ${PREFIX}/bin/. ; \ + ${LN} -fs ${PREFIX}/ilu/bin/$$file ${PREFIX}/bin/. ; \ ${ECHO} bin/$$file ; \ done) >> ${PLIST} (cd ${PREFIX}/ilu/man/man1 ; for file in * ; do \ - ln -fs ${PREFIX}/ilu/man/man1/$$file ${PREFIX}/man/man1/. ; \ + ${LN} -fs ${PREFIX}/ilu/man/man1/$$file ${PREFIX}/man/man1/. ; \ ${ECHO} man/man1/$$file ; \ done) >> ${PLIST} ${ECHO} etc/rc.d/50.ilu.sh >> ${PLIST} |