diff options
author | Leandro Dorileo <dorileo@profusion.mobi> | 2013-01-05 07:42:34 +0000 |
---|---|---|
committer | Leandro Dorileo <dorileo@profusion.mobi> | 2013-01-05 07:42:34 +0000 |
commit | 8c7519396167d6f6dee969cb5ddb813b89304c7e (patch) | |
tree | 4407adbf5b3a7a68ac1f3ab130156d32c75b5869 /configure.ac | |
parent | 9b2753b70983299c9823669b13f98ed555333179 (diff) |
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
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
75 | 75 | ||
76 | # pkg-config | 76 | # pkg-config |
77 | PKG_PROG_PKG_CONFIG | 77 | PKG_PROG_PKG_CONFIG |
78 | EDJE_VERSION=`$PKG_CONFIG edje --modversion | awk -F . '{printf("%s.0.0", $1);}'` | 78 | EDJE_VERSION=`$PKG_CONFIG edje --modversion | awk -F . '{printf("%s.%s.%s", $1, $2, $3);}'` |
79 | 79 | ||
80 | case "$host_os" in | 80 | case "$host_os" in |
81 | mingw32ce* | cegcc*) | 81 | mingw32ce* | cegcc*) |