-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This patch looks good to me. acked. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlJpONIACgkQrlYvE4MpobPLMwCfWd1AD26kovSDN2c3fnFeow5P P4YAnR7DwAs1tcxB+FX4fBZGmxItpj14 =VZ78 -----END PGP SIGNATURE-----
>From f4efde8812e5f34caad9b881a5263f7caf833804 Mon Sep 17 00:00:00 2001 From: Dan Walsh <dwalsh@xxxxxxxxxx> Date: Fri, 11 Oct 2013 10:52:42 -0400 Subject: [PATCH 71/74] Patch from Sven Vermeulen to use RANLIB. This will allow users to specify alternal ranlib commands. --- libsepol/src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libsepol/src/Makefile b/libsepol/src/Makefile index 79de6dc..e10d356 100644 --- a/libsepol/src/Makefile +++ b/libsepol/src/Makefile @@ -3,6 +3,7 @@ PREFIX ?= $(DESTDIR)/usr INCLUDEDIR ?= $(PREFIX)/include LIBDIR ?= $(PREFIX)/lib SHLIBDIR ?= $(DESTDIR)/lib +RANLIB ?= ranlib LIBBASE ?= $(shell basename $(LIBDIR)) VERSION = $(shell cat ../VERSION) @@ -21,7 +22,7 @@ all: $(LIBA) $(LIBSO) $(LIBPC) $(LIBA): $(OBJS) $(AR) rcs $@ $^ - ranlib $@ + $(RANLIB) $@ $(LIBSO): $(LOBJS) $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -Wl,-soname,$(LIBSO),--version-script=libsepol.map,-z,defs -- 1.8.3.1