diff options
Diffstat (limited to 'emulators/linux_lib/Makefile')
-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" |