Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Jun 2012 20:24:57 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r236972 - head/lib/libkiconv
Message-ID:  <201206122024.q5CKOv3I073912@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Tue Jun 12 20:24:57 2012
New Revision: 236972
URL: http://svn.freebsd.org/changeset/base/236972

Log:
  Make sure libkiconv.so.4 is installed into /lib, not into /usr/lib,
  which was inadvertently caused by r236185: if SHLIBDIR is set using the
  ?= operator, it must be done *before* bsd.own.mk is included, otherwise
  the default value is still used.
  
  Note, bsd.lib.mk will take care of removing the copy in /usr/lib upon
  installation, so no addition to ObsoleteFiles.inc is needed.
  
  X-MFC-With:	r236185

Modified:
  head/lib/libkiconv/Makefile

Modified: head/lib/libkiconv/Makefile
==============================================================================
--- head/lib/libkiconv/Makefile	Tue Jun 12 20:05:22 2012	(r236971)
+++ head/lib/libkiconv/Makefile	Tue Jun 12 20:24:57 2012	(r236972)
@@ -1,9 +1,10 @@
 # $FreeBSD$
 
+SHLIBDIR?=	/lib
+
 .include <bsd.own.mk>
 
 LIB=		kiconv
-SHLIBDIR?=	/lib
 SRCS=		kiconv_sysctl.c xlat16_iconv.c xlat16_sysctl.c
 SRCS+=		quirks.c
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206122024.q5CKOv3I073912>