mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-23 18:47:15 +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>
38 lines
797 B
Diff
38 lines
797 B
Diff
From fd3fce8c1a3d0c70a0ffd461fbbe7e2ef71dd3a7 Mon Sep 17 00:00:00 2001
|
|
From: Changqing Li <changqing.li@windriver.com>
|
|
Date: Tue, 7 Mar 2023 11:05:45 +0800
|
|
Subject: [PATCH] Update patch for 1.17
|
|
|
|
Signed-off-by: Changqing Li <changqing.li@windriver.com>
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
configure.ac | 8 +++++---
|
|
1 file changed, 5 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index df26cee..76e9165 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -1,4 +1,5 @@
|
|
-AC_INIT(lockfile.c)
|
|
+AC_INIT
|
|
+AC_CONFIG_SRCDIR([lockfile.c])
|
|
AC_CONFIG_HEADER(autoconf.h)
|
|
AC_REVISION($Revision: 1.0 $)dnl
|
|
|
|
@@ -111,7 +112,8 @@ AC_SUBST(TARGETS)
|
|
AC_SUBST(INSTALL_TARGETS)
|
|
AC_SUBST(nfslockdir)
|
|
|
|
-AC_OUTPUT(\
|
|
+AC_CONFIG_FILES([\
|
|
./Makefile \
|
|
./maillock.h \
|
|
-)
|
|
+])
|
|
+AC_OUTPUT
|
|
--
|
|
2.25.1
|
|
|