diff options
author | Philippe Coval <philippe.coval@open.eurogiciel.org> | 2014-12-04 13:50:58 +0100 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2014-12-04 13:54:56 +0100 |
commit | 3a9f724cbc8f15dccd74a2352ba8a68f2dbae32c (patch) | |
tree | e4805355bbc9c09ea36dca5387b80e7d1911078f /configure.ac | |
parent | 5c79b5d38fb59863b2aa444c61e58ab3b68dbe9b (diff) | |
download | efl-3a9f724cbc8f15dccd74a2352ba8a68f2dbae32c.tar.gz |
build: support automake-1.14
Summary:
This was needed to install example on purposes
The problem is that the install_sh* variables
in generated makefiles are expanding to ~/install-sh
which is wrong and should be the one in root source tree
Change-Id: I5311298864a5f042de90071cb6dfaefbefdf001a
Bug: https://phab.enlightenment.org/T1889
Bug-Tizen: TC-2177
Signed-off-by: Philippe Coval <philippe.coval@open.eurogiciel.org>
Reviewers: seoz
Subscribers: stefan_schmidt, cedric
Maniphest Tasks: T1889
Differential Revision: https://phab.enlightenment.org/D1724
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 27a6411cb8..ccc85eca4b 100644 --- a/configure.ac +++ b/configure.ac @@ -14,11 +14,12 @@ AH_BOTTOM([ #endif /* EFL_CONFIG_H__ */ ]) -AC_USE_SYSTEM_EXTENSIONS AM_INIT_AUTOMAKE([1.6 dist-xz -Wall color-tests subdir-objects]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +AC_USE_SYSTEM_EXTENSIONS + CFOPT_WARNING="" #### Apply configuring with legacy api's only, eo api's or both. |