* [PATCH 0/1] libxml2: fix AM_PATH_XML2 @ 2016-04-08 10:14 Robert Yang 2016-04-08 10:14 ` [PATCH 1/1] " Robert Yang 0 siblings, 1 reply; 2+ messages in thread From: Robert Yang @ 2016-04-08 10:14 UTC (permalink / raw) To: openembedded-core The following changes since commit 5ebea1114d54120d5ff5d8a6cd148110d0fda23f: build-appliance-image: Update to master head revision (2016-04-06 23:54:57 +0100) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/libxml2 http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/libxml2 Robert Yang (1): libxml2: fix AM_PATH_XML2 meta/recipes-core/libxml/libxml2/libxml-m4-use-pkgconfig.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.7.4 ^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] libxml2: fix AM_PATH_XML2 2016-04-08 10:14 [PATCH 0/1] libxml2: fix AM_PATH_XML2 Robert Yang @ 2016-04-08 10:14 ` Robert Yang 0 siblings, 0 replies; 2+ messages in thread From: Robert Yang @ 2016-04-08 10:14 UTC (permalink / raw) To: openembedded-core The code: suppose $1 == 2.7: verdep=ifelse([$1], [], [], [>= $1]) results in: verdep=>= 2.7 This is wrong in shell: bash: 2.7: command not found Use quotation marks to fix the problem. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> --- meta/recipes-core/libxml/libxml2/libxml-m4-use-pkgconfig.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/libxml/libxml2/libxml-m4-use-pkgconfig.patch b/meta/recipes-core/libxml/libxml2/libxml-m4-use-pkgconfig.patch index 0fc8407..3277165 100644 --- a/meta/recipes-core/libxml/libxml2/libxml-m4-use-pkgconfig.patch +++ b/meta/recipes-core/libxml/libxml2/libxml-m4-use-pkgconfig.patch @@ -190,7 +190,7 @@ index 68cd824..5fa0a9b 100644 - LIBS="$ac_save_LIBS" - fi - fi -+ verdep=ifelse([$1], [], [], [>= $1]) ++ verdep=ifelse([$1], [], [], [">= $1"]) + PKG_CHECK_MODULES(XML, [libxml-2.0 $verdep], [$2], [$3]) - XML_CPPFLAGS="" -- 2.7.4 ^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-04-08 10:14 UTC | newest] Thread overview: 2+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-04-08 10:14 [PATCH 0/1] libxml2: fix AM_PATH_XML2 Robert Yang 2016-04-08 10:14 ` [PATCH 1/1] " Robert Yang
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.