From owner-cvs-all Sun Oct 4 17:23:38 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24460 for cvs-all-outgoing; Sun, 4 Oct 1998 17:23:38 -0700 (PDT) (envelope-from owner-cvs-all) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24443; Sun, 4 Oct 1998 17:23:29 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id TAA23174; Sun, 4 Oct 1998 19:23:02 -0500 (CDT) Date: Sun, 4 Oct 1998 19:23:02 -0500 (CDT) From: Steve Price To: "Jordan K. Hubbard" cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/graphics/xpm Makefile In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I think I've found the problem. Try the following patch. Thanks, Steve --- bsdLib.rules.orig Sun Oct 4 19:20:37 1998 +++ bsdLib.rules Sun Oct 4 19:21:40 1998 @@ -190,11 +190,11 @@ #define InstallSharedLibrary(libname,rev,dest) @@\ install:: Concat(lib,libname.so.rev) @@\ MakeDir($(DESTDIR)dest) @@\ - @T=`echo Concat(lib,libname.so.rev) | sed 's/\.[^\.]*$$//'`;\ @@\ + @(T=`echo Concat(lib,libname.so.rev) | sed 's/\.[^\.]*$$//'`;\ @@\ set -x;\ @@\ $(INSTALL) $(INSTALLFLAGS) $(INSTBINFLAGS) Concat(lib,libname.so.rev) $(DESTDIR)dest/$$T;\ @@\ $(RM) Concat($(DESTDIR)dest/lib,libname.so);\ @@\ - $(LN) $$T Concat($(DESTDIR)dest/lib,libname.so) + $(LN) $$T Concat($(DESTDIR)dest/lib,libname.so)) #endif /* InstallSharedLibrary */ #endif /* FreeBSDArchitecture */