savio pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=72ac26c1dacbc4ea32edd45406e3605951ef61ad
commit 72ac26c1dacbc4ea32edd45406e3605951ef61ad Author: Savio Sena <savio.s...@acm.org> Date: Tue Jul 22 04:40:22 2014 -0300 autotools: Fixed 'make check' for elm++ example. Shouldn't pass -fPIC explicitly. Autoconf should be able to determine that. --- src/examples/Makefile.am | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/examples/Makefile.am b/src/examples/Makefile.am index 5088341..020f334 100644 --- a/src/examples/Makefile.am +++ b/src/examples/Makefile.am @@ -303,7 +303,7 @@ efl_thread_4_SOURCES = efl_thread_4.c endif box_cxx_example_02_SOURCES = box_cxx_example_02.cc -box_cxx_example_02_CXXFLAGS = -fPIC \ +box_cxx_example_02_CXXFLAGS = \ @ELEMENTARY_ELOCATION_CFLAGS@ \ @ELEMENTARY_EWEATHER_CFLAGS@ \ @ELEMENTARY_EMAP_CFLAGS@ \ @@ -311,8 +311,6 @@ box_cxx_example_02_CXXFLAGS = -fPIC \ @ELEMENTARY_CFLAGS@ \ @ELEMENTARY_CXX_CFLAGS@ -box_cxx_example_02_LDFLAGS = -fPIC - # This variable will hold the list of screenshots that will be made # by "make screenshots". Each item in the list is of the form: # <example executable>:<screenshot filename>:<delay in seconds> --