diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/ezx/ezxd_svn.bb | 2 | ||||
-rw-r--r-- | recipes/libsynthesis/libsynthesis_git.bb | 18 |
2 files changed, 20 insertions, 0 deletions
diff --git a/recipes/ezx/ezxd_svn.bb b/recipes/ezx/ezxd_svn.bb index ab1010c48e..ce0542fba2 100644 --- a/recipes/ezx/ezxd_svn.bb +++ b/recipes/ezx/ezxd_svn.bb @@ -19,6 +19,8 @@ S = "${WORKDIR}/${PN}" CFLAGS_append = " -DDEBUG " +TARGET_CC_ARCH += "${LDFLAGS}" + do_configure() { sed -i -e s:CROSS:CC:g Makefile } diff --git a/recipes/libsynthesis/libsynthesis_git.bb b/recipes/libsynthesis/libsynthesis_git.bb new file mode 100644 index 0000000000..3571a75a9f --- /dev/null +++ b/recipes/libsynthesis/libsynthesis_git.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "Synthesis SyncML Engine" +SRC_URI = "git://git.moblin.org/${PN}.git;protocol=git" +LICENSE = "LGPLv2.1" +PV = "0.0+git${SRCREV}" +PR = "r1" + +DEPENDS = "libpcre" + +S = "${WORKDIR}/git" + +inherit autotools_stage + +do_configure_prepend () { + cd ${S}/src + ${S}/src/gen-makefile-am.sh + cd ${S} +} + |