Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/pwdb/files/
Date: Sun, 28 Feb 2016 19:23:28
Message-Id: 1456687395.50702829bf5ca222f473c2e19e4f64fb48960c69.vapier@gentoo
1 commit: 50702829bf5ca222f473c2e19e4f64fb48960c69
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 19:22:58 2016 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 19:23:15 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50702829
7
8 sys-libs/pwdb: update selinux patch #575882
9
10 sys-libs/pwdb/files/pwdb-0.62-selinux.patch | 12 +++++-------
11 1 file changed, 5 insertions(+), 7 deletions(-)
12
13 diff --git a/sys-libs/pwdb/files/pwdb-0.62-selinux.patch b/sys-libs/pwdb/files/pwdb-0.62-selinux.patch
14 index c31579c..106be56 100644
15 --- a/sys-libs/pwdb/files/pwdb-0.62-selinux.patch
16 +++ b/sys-libs/pwdb/files/pwdb-0.62-selinux.patch
17 @@ -433,13 +433,11 @@
18
19 CFLAGS+=# -DDEBUG
20
21 -@@ -50,6 +50,6 @@ all: $(LIBSTATIC) $(LIBDYNAME)
22 +@@ -50,6 +50,7 @@
23
24 + all: $(LIBSTATIC) $(LIBDYNAME)
25
26 - $(LIBDYNAME): $(LIBOBJ)
27 -- $(CC) $(LDFLAGS) -shared -Wl,-soname -Wl,$(LIBSONAME) -Wl,-x -o $(LIBFILENAME) $(LIBOBJ) -lcrypt -lnsl -lc
28 -+ $(CC) $(LDFLAGS) -shared -Wl,-soname -Wl,$(LIBSONAME) -Wl,-x -o $(LIBFILENAME) $(LIBOBJ) -lcrypt -lnsl -lc -lselinux
29 - @ln -sf $(LIBFILENAME) $@
30 ++$(LIBDYNAME): LDLIBS += -lselinux
31
32 - $(LIBSTATIC): $(LIBOBJ)
33 - $(AR) $@ $(LIBOBJ)
34 + $(LIBDYNAME): $(LIBOBJ)
35 + $(CC) $(LDFLAGS) -shared -Wl,-soname -Wl,$(LIBSONAME) -Wl,-x -o $(LIBFILENAME) $(LIBOBJ) -lcrypt -lnsl $(LDLIBS)