747dfe4b95
- Merge patches for FATE#314506 + Add mokutil-support-crypt-hash-methods.patch to support the password hashes from /etc/shadow + Add mokutil-update-man-page.patch to update man page for the new added options - Add mokutil-lcrypt-ldflag.patch to correct LDFLAGS OBS-URL: https://build.opensuse.org/request/show/150393 OBS-URL: https://build.opensuse.org/package/show/Base:System/mokutil?expand=0&rev=6
30 lines
669 B
Diff
30 lines
669 B
Diff
From aa48dc644fbf775970d01a368c532d0668015f18 Mon Sep 17 00:00:00 2001
|
|
From: Gary Ching-Pang Lin <glin@suse.com>
|
|
Date: Wed, 30 Jan 2013 16:30:23 +0800
|
|
Subject: [PATCH] Include lcrypt in LDFLAGS
|
|
|
|
---
|
|
src/Makefile.am | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/Makefile.am b/src/Makefile.am
|
|
index afe1752..de7ddca 100644
|
|
--- a/src/Makefile.am
|
|
+++ b/src/Makefile.am
|
|
@@ -1,10 +1,10 @@
|
|
bin_PROGRAMS = mokutil
|
|
|
|
mokutil_CFLAGS = $(OPENSSL_CFLAGS) \
|
|
- -lcrypt \
|
|
$(WARNINGFLAGS_C)
|
|
|
|
-mokutil_LDADD = $(OPENSSL_LIBS)
|
|
+mokutil_LDADD = $(OPENSSL_LIBS) \
|
|
+ -lcrypt
|
|
|
|
mokutil_SOURCES = efi.h \
|
|
efilib.c \
|
|
--
|
|
1.7.10.4
|
|
|