summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2014-02-12 15:59:47 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2014-02-12 15:59:47 +0900
commitb62730122b190891832a54f482899b421c03241c (patch)
tree2f8dd905faf3c9505580d6ddb3d002f7e180e9b4
parent61b1da10a13cb1bd858844450361ce9ce654642f (diff)
downloademotion_generic_players-b62730122b190891832a54f482899b421c03241c.tar.gz
simplify player version dir fallback to match efl 1.9 simplification changes
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 97ebee1..9a572f1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -87,13 +87,13 @@ PKG_CHECK_MODULES([EMOTION], [emotion >= v_maj.v_min])
MODULE_ARCH=`pkg-config --variable=module_arch emotion`
if test -z "${MODULE_ARCH}"; then
- EMOTION_VERSION=`pkg-config --modversion emotion | cut -d. -f1-3`
+ EMOTION_VERSION=`pkg-config --modversion emotion | cut -d. -f1-2`
case "$host_os" in
mingw32ce*)
- MODULE_ARCH="$host_os-$host_cpu"
+ MODULE_ARCH="v"
;;
*)
- MODULE_ARCH="$host_os-$host_cpu-${EMOTION_VERSION}"
+ MODULE_ARCH="v-${EMOTION_VERSION}"
;;
esac
fi