summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/quilt/quilt
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-12-27 11:19:14 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-03 12:14:40 +0000
commit99e4a9ad7999bf63bac289d7fa4dc64f104e85ba (patch)
tree98491e8c77025c0bdd3428955e9edf48f41de2f5 /meta/recipes-devtools/quilt/quilt
parentd3609d0b6456c32310f4d7d0b129f591eb8f0d8e (diff)
downloadpoky-99e4a9ad7999bf63bac289d7fa4dc64f104e85ba.tar.gz
quilt upgreade from 0.48 to 0.50
gnu_patch_test_fix.patch : this patch removed as it is already upstream now. Renamed quilt.inc to quilt-0.50.inc and moved the dupicate information from native & target recipe files into the quilt-0.50.inc file. Clean up the unpackaged files warning These warnings are avoided: WARNING: For recipe quilt, the following files/directories were installed but not shipped in any package: WARNING: /usr/bin/quiltrc WARNING: /usr/share/emacs WARNING: /usr/share/emacs/site-lisp WARNING: /usr/share/emacs/site-lisp/quilt.el The /usr/bin/quiltrc is purposely not packaged, as it is needed for native recipe only. (From OE-Core rev: ffb10e51dae3e360822f26d1425c3327213a7e81) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/quilt/quilt')
-rw-r--r--meta/recipes-devtools/quilt/quilt/gnu_patch_test_fix.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/recipes-devtools/quilt/quilt/gnu_patch_test_fix.patch b/meta/recipes-devtools/quilt/quilt/gnu_patch_test_fix.patch
deleted file mode 100644
index 348b327e9b..0000000000
--- a/meta/recipes-devtools/quilt/quilt/gnu_patch_test_fix.patch
+++ /dev/null
@@ -1,21 +0,0 @@
1Upstream-Status: Pending
2
3# quilt's configure tosses an error with patch @ GNU patch 2.6.1.81-5b68
4#
5# Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
6--- quilt-0.48/configure 2010-11-03 11:50:55.280329802 -0700
7+++ quilt-0.48/configure 2010-11-03 11:52:43.705354080 -0700
8@@ -5896,7 +5896,12 @@
9 echo $ECHO_N "checking the version of $PATCH... $ECHO_C" >&6; }
10 if $PATCH --version 2> /dev/null | grep GNU >/dev/null; then
11 set -- `$PATCH --version 2> /dev/null`
12- patch_version=$2
13+ #
14+ if test x$1 = xGNU ; then
15+ patch_version=$3
16+ else
17+ patch_version=$2
18+ fi
19 { echo "$as_me:$LINENO: result: $patch_version" >&5
20 echo "${ECHO_T}$patch_version" >&6; }
21 saved_IFS=$IFS; IFS='.'