libuser: 0.60 -> 0.61

Removed fixsepbuild.patch since it is not needed any more.

(From OE-Core rev: 18c0022628dda83eb2cd73a702df7e277d31211f)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Robert Yang 2015-04-07 04:24:23 -07:00 committed by Richard Purdie
parent 5169721033
commit 8feafde9e6
2 changed files with 3 additions and 38 deletions

View File

@ -1,35 +0,0 @@
Fix out of tree build errors and parallel make issues. The mkdir commands
can race each other. The srcdir variable is a complete path so a ../ prefix makes
no sense.
Upstream-Status: Pending
RP 2013/03/21
Index: libuser-0.58/docs/Makefile.am
===================================================================
--- libuser-0.58.orig/docs/Makefile.am 2012-11-07 18:25:58.000000000 -0800
+++ libuser-0.58/docs/Makefile.am 2013-03-22 23:32:06.843518069 -0700
@@ -8,14 +8,14 @@
all: sgml/libuser.txt sgml/libuser.html
-libuser.conf.5: $(srcdir)/libuser.conf.5.in Makefile
+libuser.conf.5: $(abs_srcdir)/libuser.conf.5.in Makefile
sed 's,@sysconfdir\@,$(sysconfdir),g' \
- < $(srcdir)/libuser.conf.5.in > $@
+ < $(abs_srcdir)/libuser.conf.5.in > $@
-sgml/libuser.txt: $(srcdir)/sgml/libuser.sgml
- [ -d sgml ] || mkdir sgml
- cd sgml; sgml2txt ../$(srcdir)/sgml/libuser.sgml
+sgml/libuser.txt: $(abs_srcdir)/sgml/libuser.sgml
+ [ -d sgml ] || mkdir sgml || true
+ cd sgml; sgml2txt $(abs_srcdir)/sgml/libuser.sgml
-sgml/libuser.html: $(srcdir)/sgml/libuser.sgml
- [ -d sgml ] || mkdir sgml
- cd sgml; sgml2html ../$(srcdir)/sgml/libuser.sgml
+sgml/libuser.html: $(abs_srcdir)/sgml/libuser.sgml
+ [ -d sgml ] || mkdir sgml || true
+ cd sgml; sgml2html $(abs_srcdir)/sgml/libuser.sgml

View File

@ -12,10 +12,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
SECTION = "base"
SRC_URI = "https://fedorahosted.org/releases/l/i/libuser/libuser-${PV}.tar.xz \
file://fixsepbuild.patch"
"
SRC_URI[md5sum] = "5c549724999ccca65ceaaecc4eb8cb98"
SRC_URI[sha256sum] = "b1f73408ebfee79eb01a47c5879a2cdef6a00b75ee24870de7df1b816ff483eb"
SRC_URI[md5sum] = "d977dc59161272c1491edd9ca7ba22f2"
SRC_URI[sha256sum] = "0a114a52446e12781e2ffdf26f59df0d14e7809c7db5e551d3cf61c4e398751d"
DEPENDS = "popt libpam glib-2.0 xz-native docbook-utils-native linuxdoc-tools-native python"