diff options
author | agc <agc> | 1998-04-24 09:07:55 +0000 |
---|---|---|
committer | agc <agc> | 1998-04-24 09:07:55 +0000 |
commit | c4ce39838daa2c74a9cb99cd6237ad6b249e0736 (patch) | |
tree | 23eeee857ad774ae558e7c0d4f1b9d6879c562e1 | |
parent | 6a40f53e0eee16eda370b2e38a233d428d76751a (diff) | |
download | pkgsrc-c4ce39838daa2c74a9cb99cd6237ad6b249e0736.tar.gz |
Cosmetic change: ln -> ${LN}
-rw-r--r-- | emulators/linux_lib/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/emulators/linux_lib/Makefile b/emulators/linux_lib/Makefile index 0da749167a4..cf8a35969d4 100644 --- a/emulators/linux_lib/Makefile +++ b/emulators/linux_lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 1998/04/23 09:36:41 mycroft Exp $ +# $NetBSD: Makefile,v 1.10 1998/04/24 09:07:55 agc Exp $ # FreeBSD Id: Makefile,v 1.19 1997/12/04 17:34:28 asami Exp # @@ -28,12 +28,12 @@ do-install: post-install: ${RM} ${PREFIX}/lib/libc.so.5.4.23 - ln -sf libc.so.5.3.12 ${PREFIX}/lib/libc.so.5 - ln -sf ../../lib/libc.so.5.3.12 ${PREFIX}/usr/lib/libc.so + ${LN} -sf libc.so.5.3.12 ${PREFIX}/lib/libc.so.5 + ${LN} -sf ../../lib/libc.so.5.3.12 ${PREFIX}/usr/lib/libc.so -${PREFIX}/sbin/ldconfig || ${TRUE} ${MKDIR} ${PREFIX}/usr/lib/zoneinfo - ln -sf /etc/localtime ${PREFIX}/usr/lib/zoneinfo/localtime + ${LN} -sf /etc/localtime ${PREFIX}/usr/lib/zoneinfo/localtime ${MKDIR} ${PREFIX}/dev - ln -sf /dev/sound ${PREFIX}/dev/dsp + ${LN} -sf /dev/sound ${PREFIX}/dev/dsp .include "../../mk/bsd.pkg.mk" |