diff options
author | hubertf <hubertf> | 1998-03-05 12:22:53 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1998-03-05 12:22:53 +0000 |
commit | d4e0842688220fea6ca93f7f02e42dde68bdc332 (patch) | |
tree | 777243eb035c6bfef012d7e8d713ce8027b79eaf /emulators | |
parent | 0e9deb0f076fb2e98da685019b3f4e989427ae57 (diff) | |
download | pkgsrc-d4e0842688220fea6ca93f7f02e42dde68bdc332.tar.gz |
- Use the linux ldconfig to DTRT
- Link /dev/sound to (/emul/linux)/dev/dsp, inspired by Charles Hannum
and Neil McRae
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/linux_lib/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/emulators/linux_lib/Makefile b/emulators/linux_lib/Makefile index c20bfd48251..ef6f481d198 100644 --- a/emulators/linux_lib/Makefile +++ b/emulators/linux_lib/Makefile @@ -3,7 +3,7 @@ # Date created: 1997/12/04 # Whom: erich@FreeBSD.org # -# $NetBSD: Makefile,v 1.5 1998/02/02 08:10:49 hubertf Exp $ +# $NetBSD: Makefile,v 1.6 1998/03/05 12:22:53 hubertf Exp $ # FreeBSD Id: Makefile,v 1.19 1997/12/04 17:34:28 asami Exp # @@ -32,8 +32,10 @@ do-install: @zcat ${DISTDIR}/${DISTNAME}.tar.gz |(cd ${PREFIX}; pax -r) post-install: - -${LDCONFIG} || ${TRUE} + -${PREFIX}/sbin/ldconfig || ${TRUE} ${MKDIR} ${PREFIX}/usr/lib/zoneinfo ln -sf /etc/localtime ${PREFIX}/usr/lib/zoneinfo/localtime + ${MKDIR} ${PREFIX}/dev + ln -s /dev/sound ${PREFIX}/dev/dsp .include <bsd.port.mk> |