Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 612530
Collapse All | Expand All

(-)a/sys-libs/gdbm/files/gdbm-1.13-fix-macro-typo.patch (+28 lines)
Line 0 Link Here
1
# Sent upstream.
2
3
From c90e561019241f8e9b3a18987930f6de778feb4b Mon Sep 17 00:00:00 2001
4
From: Mihai Moldovan <ionic@ionic.de>
5
Date: Tue, 14 Mar 2017 15:24:15 +0100
6
Subject: [PATCH] src/gdbm.h.in: actually fix all typos.
7
8
Post-fixup of 46aeea15845301873e1e7f7ed6d609a9631c2486.
9
---
10
 src/gdbm.h.in | 2 +-
11
 1 file changed, 1 insertion(+), 1 deletion(-)
12
13
diff --git a/src/gdbm.h.in b/src/gdbm.h.in
14
index e9b7b1b..de0d2b9 100644
15
--- a/src/gdbm.h.in
16
+++ b/src/gdbm.h.in
17
@@ -224,7 +224,7 @@ extern int gdbm_copy_meta (GDBM_FILE dst, GDBM_FILE src);
18
 # define _GDBM_MAX_ERRNO	GDBM_DIR_OVERFLOW
19
 
20
 /* This one was never used and will be removed in the future */
21
-# define GDBM_UNKNOWN_UPDATE GDBM_ERR_UNKNOWN_ERROR
22
+# define GDBM_UNKNOWN_UPDATE GDBM_UNKNOWN_ERROR
23
   
24
 typedef int gdbm_error;
25
 extern gdbm_error gdbm_errno;
26
-- 
27
2.11.1
28
(-)a/sys-libs/gdbm/gdbm-1.13.ebuild (+4 lines)
Lines 24-30 RDEPEND=" Link Here
24
24
25
EX_S="${WORKDIR}"/${EX_P}
25
EX_S="${WORKDIR}"/${EX_P}
26
26
27
PATCHES=( "${FILESDIR}/${P}-fix-macro-typo.patch" )
28
27
src_prepare() {
29
src_prepare() {
30
	[[ "${#PATCHES[@]}" -gt "0" ]] && epatch "${PATCHES[@]}"
31
28
	elibtoolize
32
	elibtoolize
29
}
33
}
30
34

Return to bug 612530