From cmascott@world.std.com  Thu Aug 27 10:33:00 1998
Received: from europe.std.com (europe.std.com [199.172.62.20])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15029
          for <FreeBSD-gnats-submit@freebsd.org>; Thu, 27 Aug 1998 10:32:59 -0700 (PDT)
          (envelope-from cmascott@world.std.com)
Received: from world.std.com by europe.std.com (8.7.6/BZS-8-1.0)
	id NAA08540; Thu, 27 Aug 1998 13:32:06 -0400 (EDT)
Received: from europa.local (world-f.std.com) by world.std.com (TheWorld/Spike-2.0)
	id AA26012; Thu, 27 Aug 1998 13:31:40 -0400
Received: (from cmascott@localhost)
	by europa.local (8.8.8/8.8.8) id NAA00840;
	Thu, 27 Aug 1998 13:31:10 -0400 (EDT)
	(envelope-from cmascott)
Message-Id: <199808271731.NAA00840@europa.local>
Date: Thu, 27 Aug 1998 13:31:10 -0400 (EDT)
From: cmascott@world.std.com
Reply-To: cmascott@world.std.com
To: FreeBSD-gnats-submit@freebsd.org
Subject: proflibs installation error, libcrypt_p.a
X-Send-Pr-Version: 3.2

>Number:         7759
>Category:       misc
>Synopsis:       proflibs installation error, libcrypt_p.a
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 27 10:40:00 PDT 1998
>Closed-Date:    Wed Aug 18 23:37:51 PDT 1999
>Last-Modified:  Wed Aug 18 23:38:35 PDT 1999
>Originator:     Carl Mascott
>Release:        FreeBSD 2.2.7-RELEASE i386
>Organization:
>Environment:

FreeBSD europa.local 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Mon Aug 24 20:48:25 EDT 1998
cmascott@europa.local:/usr/src/sys/compile/EUR980824  i386

>Description:

If one installs the profiled libraries on a system that already
has the DES libraries, the installation does not take account
of the fact that the DES libraries are present and creates
a symlink libcrypt_p.a -> libscrypt_p.a.  With the DES libraries
present, the symlink should be libcrypt_p.a -> libdescrypt_p.a.

>How-To-Repeat:

Install the profiled libraries on a system that already has
the DES libraries.

>Fix:
	
Insert the following code in proflibs/install.sh on CD-ROM #1
just before the "exit 0" line:

cd /usr/lib
if [ -f libdescrypt_p.a ]
then
	ln -f -s libdescrypt_p.a libcrypt_p.a
fi

(This code fragment has been tested.)
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: jkoshy 
State-Changed-When: Wed Aug 18 23:37:51 PDT 1999 
State-Changed-Why:  
Fixed in rev 1.3 of "src/release/scripts/proflibs-install.sh",  thanks! 
>Unformatted:
