diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-28 09:58:05 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-28 09:58:05 +0800 |
commit | fa1d1e4d83108ff37c97627528c2face622cdd11 (patch) | |
tree | dcf9b0fb1a68bffcee5022498436b05c5daec532 /devel/ilu | |
parent | 553599566d995df6cf4174f74328f0d62cd46206 (diff) | |
download | freebsd-ports-gnome-fa1d1e4d83108ff37c97627528c2face622cdd11.tar.gz freebsd-ports-gnome-fa1d1e4d83108ff37c97627528c2face622cdd11.tar.zst freebsd-ports-gnome-fa1d1e4d83108ff37c97627528c2face622cdd11.zip |
ln -> ${LN}
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} |