cedric pushed a commit to branch master.
http://git.enlightenment.org/core/efl.git/commit/?id=d0ced20a0493dd62b73ff93892097b2c727b86a6
commit d0ced20a0493dd62b73ff93892097b2c727b86a6
Author: Vincent Torri <vincent dot torri at gmail dot com>
Date: Thu Oct 22 22:54:18 2015 +0200
ecore_audio: do not compile elua file if ecore_audio is disabled
@fix
Signed-off-by: Cedric BAIL <[email protected]>
---
src/Makefile_Ecore_Audio.am | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Makefile_Ecore_Audio.am b/src/Makefile_Ecore_Audio.am
index 8881f19..ccce8f7 100644
--- a/src/Makefile_Ecore_Audio.am
+++ b/src/Makefile_Ecore_Audio.am
@@ -91,8 +91,6 @@ lib_ecore_audio_libecore_audio_la_LDFLAGS +=
@coreaudio_ldflags@
endif
-endif
-
if HAVE_ELUA
ecore_audio_eolian_lua = $(ecore_audio_eolian_files:%.eo=%.eo.lua)
@@ -105,3 +103,5 @@ installed_ecoreaudioluadir =
$(datadir)/elua/modules/ecore_audio
nodist_installed_ecoreaudiolua_DATA = $(generated_ecore_audio_lua_all)
endif
+
+endif
--