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>
44 lines
1.5 KiB
Diff
44 lines
1.5 KiB
Diff
Upstream-Status: Pending
|
|
|
|
Patch by Chris Waters sets path which are normally point to a directory
|
|
with Tk sources to a subdirectory of /usr/include/tcl8.4 (debian/rules
|
|
puts private Tk headers there).
|
|
|
|
--- tk8.5-8.5.8.orig/unix/tkConfig.sh.in
|
|
+++ tk8.5-8.5.8/unix/tkConfig.sh.in
|
|
@@ -55,7 +55,7 @@
|
|
|
|
# String to pass to linker to pick up the Tk library from its
|
|
# build directory.
|
|
-TK_BUILD_LIB_SPEC='@TK_BUILD_LIB_SPEC@'
|
|
+TK_BUILD_LIB_SPEC='@TK_LIB_SPEC@'
|
|
|
|
# String to pass to linker to pick up the Tk library from its
|
|
# installed directory.
|
|
@@ -71,7 +71,7 @@
|
|
# different place than the directory containing the source files, this
|
|
# points to the location of the sources, not the location where Tk was
|
|
# compiled.
|
|
-TK_SRC_DIR='@TK_SRC_DIR@'
|
|
+TK_SRC_DIR='@includedir@/tk-private'
|
|
|
|
# Needed if you want to make a 'fat' shared library library
|
|
# containing tk objects or link a different wish.
|
|
@@ -86,14 +86,14 @@
|
|
|
|
# String to pass to linker to pick up the Tk stub library from its
|
|
# build directory.
|
|
-TK_BUILD_STUB_LIB_SPEC='@TK_BUILD_STUB_LIB_SPEC@'
|
|
+TK_BUILD_STUB_LIB_SPEC='@TK_STUB_LIB_SPEC@'
|
|
|
|
# String to pass to linker to pick up the Tk stub library from its
|
|
# installed directory.
|
|
TK_STUB_LIB_SPEC='@TK_STUB_LIB_SPEC@'
|
|
|
|
# Path to the Tk stub library in the build directory.
|
|
-TK_BUILD_STUB_LIB_PATH='@TK_BUILD_STUB_LIB_PATH@'
|
|
+TK_BUILD_STUB_LIB_PATH='@TK_STUB_LIB_PATH@'
|
|
|
|
# Path to the Tk stub library in the install directory.
|
|
TK_STUB_LIB_PATH='@TK_STUB_LIB_PATH@'
|