From owner-freebsd-hackers Fri Jun 6 01:13:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id BAA06442 for hackers-outgoing; Fri, 6 Jun 1997 01:13:46 -0700 (PDT) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA06437 for ; Fri, 6 Jun 1997 01:13:44 -0700 (PDT) Received: from time.cdrom.com (jkh@localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id BAA19439; Fri, 6 Jun 1997 01:13:51 -0700 (PDT) To: hans@brandinnovators.com (Hans Zuidam) cc: hackers@FreeBSD.ORG Subject: Re: Any objection to the following? In-reply-to: Your message of "Fri, 06 Jun 1997 09:23:26 +0200." <199706060723.JAA04486@truk.brandinnovators.com> Date: Fri, 06 Jun 1997 01:13:51 -0700 Message-ID: <19435.865584831@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > No, although I remember submitting patches to ldconfig for much > the same a long time ago. They would allow ldconfig to take a file > on the command line and read its directories from it. Directories > on command line are treated just like normal. If there's any interest > I could submit the patches again. That might be interesting.. If it accepted multiple filenames, it would also make possible: if [ -f /etc/ld.so.conf ]; then _LDC=/etc/ld.so.conf fi for i in ${local_dirs}; do if [ -f $i/ld.so.conf ]; then _LDC="${_LDC} $i/ld.so.conf" fi done ldconfig ${_LDC} with very little fuss.. Jordan