From 8c7519396167d6f6dee969cb5ddb813b89304c7e Mon Sep 17 00:00:00 2001 From: Leandro Dorileo Date: Sat, 5 Jan 2013 07:42:34 +0000 Subject: elementary: fix EDJE_VERSION The old edje build system considered just maj to MODULE_ARCH, now it takes in account maj.min.v_mic - so, elm and edje don't understand each other - resulting in broken things like edje_external module not being loaded. SVN revision: 82269 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index a0ef004f3..2601f820d 100644 --- a/configure.ac +++ b/configure.ac @@ -75,7 +75,7 @@ AC_SUBST(VMIN) # pkg-config PKG_PROG_PKG_CONFIG -EDJE_VERSION=`$PKG_CONFIG edje --modversion | awk -F . '{printf("%s.0.0", $1);}'` +EDJE_VERSION=`$PKG_CONFIG edje --modversion | awk -F . '{printf("%s.%s.%s", $1, $2, $3);}'` case "$host_os" in mingw32ce* | cegcc*) -- cgit v1.2.1