mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
be8c765c7c
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
31 lines
914 B
Diff
31 lines
914 B
Diff
Upstream-Status: Pending
|
|
|
|
configure.ac: don't use xml-config if --with-libxml-prefix is specified to configure
|
|
|
|
Same behavior for xslt-config.
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index ed04e0c..39d5d4c 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -40,7 +40,8 @@ AC_ARG_PROGRAM dnl Transforming Program Names When Installing
|
|
AC_PROG_SED
|
|
AC_PROG_AWK
|
|
|
|
-XSTAR_LIB_CHECK([LIBXML], [xml2-config])
|
|
+AS_IF([test "x$LIBXML_PREFIX" = x],
|
|
+ [XSTAR_LIB_CHECK([LIBXML], [xml2-config])])
|
|
|
|
AS_IF([test "x$LIBXML_SRCDIR" != x],
|
|
[LIBXML_INCDIR="$LIBXML_SRCDIR/include"])
|
|
@@ -56,7 +57,8 @@ AS_IF([test "x$STATIC_LIBS" != xno],
|
|
[LIBXML_LDFLAGS="-L$LIBXML_LIBDIR"]
|
|
|
|
|
|
-XSTAR_LIB_CHECK([LIBXSLT], [xslt-config])
|
|
+AS_IF([test "x$LIBXSLT_PREFIX" = x],
|
|
+ [XSTAR_LIB_CHECK([LIBXSLT], [xslt-config])])
|
|
|
|
AS_IF([test "x$LIBXSLT_SRCDIR" != x],
|
|
[XSLTPROC_PATH="$LIBXSLT_SRCDIR/xsltproc:$PATH"
|