diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2016-05-26 12:27:31 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2016-05-26 12:27:38 +0900 |
commit | 837b2c7c09220f743ea128c64ca9f90d67ac14c3 (patch) | |
tree | 07f17299cf6a85cd1e4ff6a9b86ac7d0cb69270b /m4 | |
parent | 41842ca9f92095ae08ae54d99e9dcfeadef401df (diff) | |
download | efl-837b2c7c09220f743ea128c64ca9f90d67ac14c3.tar.gz |
Fix addition of Evil library in .pc files
Summary: lib/evil/libevil.la was added to .pc files, which broke the use of the EFL pc files
Test Plan: compilation
Reviewers: cedric, jpeg, zmike, raster
Reviewed By: raster
Differential Revision: https://phab.enlightenment.org/D3983
Diffstat (limited to 'm4')
-rw-r--r-- | m4/efl_check_funcs.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/efl_check_funcs.m4 b/m4/efl_check_funcs.m4 index 24c3dbadf0..d48e02cb6b 100644 --- a/m4/efl_check_funcs.m4 +++ b/m4/efl_check_funcs.m4 @@ -71,7 +71,7 @@ esac case "$host_os" in mingw*) $2="yes" - EFL_ADD_LIBS([$1], [lib/evil/libevil.la]) + EFL_ADD_LIBS([$1], [-levil]) ;; *) EFL_FIND_LIB_FOR_CODE([$1], [$dllibs], [$2], [[ @@ -100,7 +100,7 @@ esac case "$host_os" in mingw*) $2="yes" - EFL_ADD_LIBS([$1], [lib/evil/libevil.la]) + EFL_ADD_LIBS([$1], [-levil]) ;; *) EFL_FIND_LIB_FOR_CODE([$1], [$dllibs], [$2], [[ @@ -125,7 +125,7 @@ esac case "$host_os" in mingw*) $2="yes" - EFL_ADD_LIBS([$1], [lib/evil/libevil.la]) + EFL_ADD_LIBS([$1], [-levil]) ;; *) EFL_FIND_LIB_FOR_CODE([$1], [$dllibs], [$2], [[ |