diff options
Diffstat (limited to 'meta/packages/sysvinit/sysvinit-2.88dsf/crypt-lib.patch')
-rw-r--r-- | meta/packages/sysvinit/sysvinit-2.88dsf/crypt-lib.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/meta/packages/sysvinit/sysvinit-2.88dsf/crypt-lib.patch b/meta/packages/sysvinit/sysvinit-2.88dsf/crypt-lib.patch deleted file mode 100644 index b9511f088e..0000000000 --- a/meta/packages/sysvinit/sysvinit-2.88dsf/crypt-lib.patch +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | # The src Makefile was checking for libcrypt.a on the host, not in the | ||
2 | # build environment. This patch checks for $LCRYPT in the environment | ||
3 | # and uses it if it's there. | ||
4 | # - jdike@linux.intel.com | ||
5 | |||
6 | Index: sysvinit-2.88dsf/src/Makefile | ||
7 | =================================================================== | ||
8 | --- sysvinit-2.88dsf.orig/src/Makefile | ||
9 | +++ sysvinit-2.88dsf/src/Makefile | ||
10 | @@ -85,9 +85,13 @@ else | ||
11 | endif | ||
12 | |||
13 | # Additional libs for GNU libc. | ||
14 | +ifneq ($(LCRYPT),) | ||
15 | + SULOGINLIBS += $(LCRYPT) | ||
16 | +else | ||
17 | ifneq ($(wildcard /usr/lib*/libcrypt.a),) | ||
18 | SULOGINLIBS += -lcrypt | ||
19 | endif | ||
20 | +endif | ||
21 | |||
22 | all: $(BIN) $(SBIN) $(USRBIN) | ||
23 | |||