-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This patch looks good to me. acked. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk5yWrcACgkQrlYvE4MpobNzWQCdH9xexXB6/riII69h8UhrxqTQ AxYAoIIcgb5RlMVRmtys0mryIsBmnTPW =cULt -----END PGP SIGNATURE-----
>From 0e27300ac57930bdf303e7c3987a28db6be1cee0 Mon Sep 17 00:00:00 2001 From: Eric Paris <eparis@xxxxxxxxxx> Date: Wed, 14 Sep 2011 14:38:49 -0400 Subject: [PATCH 65/67] libselinux: put libselinux.so.1 in /lib not /usr/lib Commit 874bac80bbfbf0a5 incorrectly changed the default install location of libselinux.so.1 from /lib to /usr/lib. This patch fixes that problem by reverting that portion of the change. Signed-off-by: Eric Paris <eparis@xxxxxxxxxx> --- libselinux/src/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libselinux/src/Makefile b/libselinux/src/Makefile index 7680008..78874be 100644 --- a/libselinux/src/Makefile +++ b/libselinux/src/Makefile @@ -7,7 +7,7 @@ PYPREFIX ?= $(notdir $(PYTHON)) # Installation directories. PREFIX ?= $(DESTDIR)/usr LIBDIR ?= $(PREFIX)/lib -SHLIBDIR ?= $(PREFIX)/lib +SHLIBDIR ?= $(DESTDIR)/lib INCLUDEDIR ?= $(PREFIX)/include PYLIBVER ?= $(shell $(PYTHON) -c 'import sys;print("python%d.%d" % sys.version_info[0:2])') PYINC ?= $(shell pkg-config --cflags $(PYPREFIX)) -- 1.7.6.2