-----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/ iEYEARECAAYFAlJpOP4ACgkQrlYvE4MpobM4dACdFXc+tPh2XkTpKyswWQP/2Y+2 yZMAoOF8ujRMIE/aIcM4wooGsud2lVZU =FW/M -----END PGP SIGNATURE-----
>From 1dab7af03c5e09d71050ca56a7d5d2ab6e2e7191 Mon Sep 17 00:00:00 2001 From: Sven Vermeulen <sven.vermeulen@xxxxxxxxx> Date: Wed, 25 Sep 2013 17:52:00 +0200 Subject: [PATCH 74/74] Make RANLIB variable overridable If the RANLIB variable is defined by the user, use that value instead of the /usr/bin/ranlib binary. Signed-off-by: Sven Vermeulen <sven.vermeulen@xxxxxxxxx> --- libselinux/src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libselinux/src/Makefile b/libselinux/src/Makefile index 310177b..02dd829 100644 --- a/libselinux/src/Makefile +++ b/libselinux/src/Makefile @@ -80,7 +80,7 @@ override CFLAGS += -I../include -I$(INCLUDEDIR) -D_GNU_SOURCE -D_FILE_OFFSET_BIT SWIG_CFLAGS += -Wno-error -Wno-unused-variable -Wno-unused-but-set-variable -Wno-unused-parameter \ -Wno-shadow -Wno-uninitialized -Wno-missing-prototypes -Wno-missing-declarations -RANLIB=ranlib +RANLIB ?= ranlib ARCH := $(patsubst i%86,i386,$(shell uname -m)) ifneq (,$(filter i386,$(ARCH))) -- 1.8.3.1