diff options
author | mrg <mrg@pkgsrc.org> | 2002-12-08 01:54:19 +0000 |
---|---|---|
committer | mrg <mrg@pkgsrc.org> | 2002-12-08 01:54:19 +0000 |
commit | 674571ffd7fe42ab688e098784aa2280aacf3691 (patch) | |
tree | 2188be27d86b101af46be33bffa9d3226e4a9133 /www/navigator | |
parent | 34894084da41447670b5374254a980a2f50c1a87 (diff) | |
download | pkgsrc-674571ffd7fe42ab688e098784aa2280aacf3691.tar.gz |
the solaris dynamic linker is called /usr/lib/ld.so.1, not /usr/lib/ld.so.
the latter is the a.out dynamic linker. as we're using the ELF navigator,
look for the ELF dynamic linker.
Diffstat (limited to 'www/navigator')
-rw-r--r-- | www/navigator/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/navigator/Makefile.common b/www/navigator/Makefile.common index 0695c6dbd10..aa3d01667d5 100644 --- a/www/navigator/Makefile.common +++ b/www/navigator/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.57 2002/12/07 02:39:07 schmonz Exp $ +# $NetBSD: Makefile.common,v 1.58 2002/12/08 01:54:19 mrg Exp $ # # Common include file for communicator and navigator packages @@ -94,7 +94,7 @@ MASTER_SITES= ftp://archive.netscape.com/archive/communicator/${SUB}/ # .elif (${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "sparc64") PLIST_ARCH= solaris-sparc -.if !exists(/emul/svr4/usr/lib/ld.so) +.if !exists(/emul/svr4/usr/lib/ld.so.1) PKG_FAIL_REASON= "${PKGNAME} requires Solaris libraries - see compat_svr4(8)" .endif NS_VERS= 4.79 |