From 2295705918707992705b5df4e4c17cb4cf5a3df5 Mon Sep 17 00:00:00 2001 From: Jeff Dike Date: Wed, 14 Jul 2010 14:35:52 -0400 Subject: sysvinit - Remove sulogin dependency on /usr/lib*/libcrypt.a The sulogin compile checked for /usr/lib*/libcrypt.a to decide whether to add -lcrypt to the final compile. However, the recipe puts LCRYPT in the environment, so crypt-lib.patch makes the Makefile check for this before looking at the host /usr/lib. Signed-off-by: Jeff Dike --- .../sysvinit/sysvinit-2.88dsf/crypt-lib.patch | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta/packages/sysvinit/sysvinit-2.88dsf/crypt-lib.patch (limited to 'meta/packages/sysvinit/sysvinit-2.88dsf') diff --git a/meta/packages/sysvinit/sysvinit-2.88dsf/crypt-lib.patch b/meta/packages/sysvinit/sysvinit-2.88dsf/crypt-lib.patch new file mode 100644 index 000000000..b9511f088 --- /dev/null +++ b/meta/packages/sysvinit/sysvinit-2.88dsf/crypt-lib.patch @@ -0,0 +1,23 @@ +# The src Makefile was checking for libcrypt.a on the host, not in the +# build environment. This patch checks for $LCRYPT in the environment +# and uses it if it's there. +# - jdike@linux.intel.com + +Index: sysvinit-2.88dsf/src/Makefile +=================================================================== +--- sysvinit-2.88dsf.orig/src/Makefile ++++ sysvinit-2.88dsf/src/Makefile +@@ -85,9 +85,13 @@ else + endif + + # Additional libs for GNU libc. ++ifneq ($(LCRYPT),) ++ SULOGINLIBS += $(LCRYPT) ++else + ifneq ($(wildcard /usr/lib*/libcrypt.a),) + SULOGINLIBS += -lcrypt + endif ++endif + + all: $(BIN) $(SBIN) $(USRBIN) + -- cgit v1.2.3