mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +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>
49 lines
1.7 KiB
Diff
49 lines
1.7 KiB
Diff
From 5539442e5f5442606071afc5cf02642314ad13bb Mon Sep 17 00:00:00 2001
|
|
From: Koen Kooi <koen@dominion.thruhere.net>
|
|
Date: Wed, 17 Aug 2011 22:52:35 +0200
|
|
Subject: [PATCH] tk 8.5.8: import from OE rev
|
|
|
|
Patch by Sergei Golovan allows to find tclConfig.sh in /usr/share/tcltk/tcl8.5
|
|
and tkConfig.sh in /usr/share/tcltk/tk8.5 where they are located in Debian
|
|
installation.
|
|
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
unix/configure | 1 +
|
|
unix/tcl.m4 | 2 ++
|
|
2 files changed, 3 insertions(+)
|
|
|
|
Index: a/unix/configure
|
|
===================================================================
|
|
--- a/unix/configure.orig
|
|
+++ b/unix/configure
|
|
@@ -1431,6 +1431,7 @@ echo "$as_me: error: ${with_tclconfig} d
|
|
`ls -d /usr/local/lib 2>/dev/null` \
|
|
`ls -d /usr/contrib/lib 2>/dev/null` \
|
|
`ls -d /usr/pkg/lib 2>/dev/null` \
|
|
+ `ls -d /usr/share/tcltk/tcl8.6 2>/dev/null` \
|
|
`ls -d /usr/lib/tcl8.6 2>/dev/null` \
|
|
`ls -d /usr/lib 2>/dev/null` \
|
|
`ls -d /usr/lib64 2>/dev/null` \
|
|
Index: a/unix/tcl.m4
|
|
===================================================================
|
|
--- a/unix/tcl.m4.orig
|
|
+++ b/unix/tcl.m4
|
|
@@ -93,6 +93,7 @@ AC_DEFUN([SC_PATH_TCLCONFIG], [
|
|
`ls -d /usr/local/lib 2>/dev/null` \
|
|
`ls -d /usr/contrib/lib 2>/dev/null` \
|
|
`ls -d /usr/pkg/lib 2>/dev/null` \
|
|
+ `ls -d /usr/share/tcltk/tcl8.6 2>/dev/null` \
|
|
`ls -d /usr/lib/tcl8.6 2>/dev/null` \
|
|
`ls -d /usr/lib 2>/dev/null` \
|
|
`ls -d /usr/lib64 2>/dev/null` \
|
|
@@ -226,6 +227,7 @@ AC_DEFUN([SC_PATH_TKCONFIG], [
|
|
`ls -d /usr/local/lib 2>/dev/null` \
|
|
`ls -d /usr/contrib/lib 2>/dev/null` \
|
|
`ls -d /usr/pkg/lib 2>/dev/null` \
|
|
+ `ls -d /usr/share/tcltk/tcl8.6 2>/dev/null` \
|
|
`ls -d /usr/lib/tk8.6 2>/dev/null` \
|
|
`ls -d /usr/lib 2>/dev/null` \
|
|
`ls -d /usr/lib64 2>/dev/null` \
|