Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/e2fsprogs-libs/files: e2fsprogs-libs-1.42.9-no-quota.patch
Date: Tue, 31 Dec 2013 19:07:53
Message-Id: 20131231190747.4C5282004E@flycatcher.gentoo.org
1 vapier 13/12/31 19:07:47
2
3 Added: e2fsprogs-libs-1.42.9-no-quota.patch
4 Log:
5 Version bump #496594 by Ulenrich.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
8
9 Revision Changes Path
10 1.1 sys-libs/e2fsprogs-libs/files/e2fsprogs-libs-1.42.9-no-quota.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/e2fsprogs-libs/files/e2fsprogs-libs-1.42.9-no-quota.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/e2fsprogs-libs/files/e2fsprogs-libs-1.42.9-no-quota.patch?rev=1.1&content-type=text/plain
14
15 Index: e2fsprogs-libs-1.42.9-no-quota.patch
16 ===================================================================
17 From 947b1fe6c67b2399edd436c74408cb354c381e4a Mon Sep 17 00:00:00 2001
18 From: Mike Frysinger <vapier@g.o>
19 Date: Tue, 31 Dec 2013 13:35:05 -0500
20 Subject: [PATCH] fix build when quota is disabled
21
22 Building e2fsprogs-libs with quota disabled fails:
23
24 making all in lib/quota
25 make[2]: Entering directory '.../lib/quota'
26 make[2]: *** No rule to make target '.../lib/ext2fs/ext2_fs.h', needed by 'mkquota.o'. Stop.
27 make[2]: *** Waiting for unfinished jobs....
28 make[2]: Leaving directory '.../lib/quota'
29 Makefile:380: recipe for target 'all-libs-recursive' failed
30 make[1]: *** [all-libs-recursive] Error 1
31
32 Signed-off-by: Mike Frysinger <vapier@g.o>
33 ---
34 Makefile.in | 2 +-
35 1 file changed, 1 insertion(+), 1 deletion(-)
36
37 diff --git a/Makefile.in b/Makefile.in
38 index f327d19..544ed02 100644
39 --- a/Makefile.in
40 +++ b/Makefile.in
41 @@ -13,7 +13,7 @@ INSTALL = @INSTALL@
42 @DEBUGFS_CMT@DEBUGFS_DIR= debugfs
43 @UUID_CMT@UUID_LIB_SUBDIR= lib/uuid
44 @BLKID_CMT@BLKID_LIB_SUBDIR= lib/blkid
45 -QUOTA_LIB_SUBDIR= lib/quota
46 +@QUOTA_CMT@QUOTA_LIB_SUBDIR= lib/quota
47
48 LIB_SUBDIRS=lib/et lib/ss lib/e2p $(UUID_LIB_SUBDIR) lib/ext2fs $(BLKID_LIB_SUBDIR) $(QUOTA_LIB_SUBDIR) intl
49 PROG_SUBDIRS=e2fsck $(DEBUGFS_DIR) misc $(RESIZE_DIR) tests/progs po
50 --
51 1.8.4.3