mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
dpkg: fix package_deb error for linux-wrs
The new dpkg will report linux-wrs version parse error, since there is a '_' inside. This patch fixes this issue. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
This commit is contained in:
@@ -0,0 +1,21 @@
|
|||||||
|
Adapt to linux-wrs kernel version, which has character '_' inside.
|
||||||
|
|
||||||
|
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
|
||||||
|
|
||||||
|
diff -ruN dpkg-1.15.8.5-orig/lib/dpkg/parsehelp.c dpkg-1.15.8.5/lib/dpkg/parsehelp.c
|
||||||
|
--- dpkg-1.15.8.5-orig/lib/dpkg/parsehelp.c 2010-10-08 12:27:15.058572774 +0800
|
||||||
|
+++ dpkg-1.15.8.5/lib/dpkg/parsehelp.c 2010-10-09 11:18:15.484190771 +0800
|
||||||
|
@@ -268,11 +268,11 @@
|
||||||
|
|
||||||
|
/* XXX: Would be faster to use something like cisversion and cisrevision. */
|
||||||
|
for (ptr = rversion->version; *ptr; ptr++) {
|
||||||
|
- if (!cisdigit(*ptr) && !cisalpha(*ptr) && strchr(".-+~:", *ptr) == NULL)
|
||||||
|
+ if (!cisdigit(*ptr) && !cisalpha(*ptr) && strchr(".-+~:_", *ptr) == NULL)
|
||||||
|
return _("invalid character in version number");
|
||||||
|
}
|
||||||
|
for (ptr = rversion->revision; *ptr; ptr++) {
|
||||||
|
- if (!cisdigit(*ptr) && !cisalpha(*ptr) && strchr(".-+~", *ptr) == NULL)
|
||||||
|
+ if (!cisdigit(*ptr) && !cisalpha(*ptr) && strchr(".-+~_", *ptr) == NULL)
|
||||||
|
return _("invalid character in revision number");
|
||||||
|
}
|
||||||
|
|
||||||
@@ -1,7 +1,8 @@
|
|||||||
require dpkg.inc
|
require dpkg.inc
|
||||||
|
|
||||||
SRC_URI += "file://noman.patch;patch=1 \
|
SRC_URI += "file://noman.patch;patch=1 \
|
||||||
file://check_snprintf.patch"
|
file://check_snprintf.patch \
|
||||||
|
file://check_version.patch"
|
||||||
|
|
||||||
EXTRA_OECONF = "--without-static-progs \
|
EXTRA_OECONF = "--without-static-progs \
|
||||||
--without-dselect \
|
--without-dselect \
|
||||||
|
|||||||
Reference in New Issue
Block a user