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
This commit is contained in:
Leandro Dorileo 2013-01-05 07:42:34 +00:00
parent a9ff2c4093
commit e00d7f5774
1 changed files with 1 additions and 1 deletions

View File

@ -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*)