From: sachiel Date: Wed, 28 Dec 2011 14:13:30 +0000 (+0000) Subject: Don't override standard variables, it looks weird. In turn, fix building with automak... X-Git-Tag: submit/2.0alpha-wayland/20121127.222001~113 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a73a43bcc97249f22544528715d4658a96d553d6;p=profile%2Fivi%2Feet.git Don't override standard variables, it looks weird. In turn, fix building with automake 1.11.2 git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@66599 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/examples/Makefile.am b/src/examples/Makefile.am index 8279445..6c5a324 100644 --- a/src/examples/Makefile.am +++ b/src/examples/Makefile.am @@ -1,6 +1,6 @@ MAINTAINERCLEANFILES = Makefile.in -pkglibdir = $(datadir)/$(PACKAGE)/examples +examplesdir = $(datadir)/$(PACKAGE)/examples if BUILD_EXAMPLES AM_CPPFLAGS = \ @@ -8,7 +8,7 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/src/lib \ @EINA_CFLAGS@ -pkglib_PROGRAMS = eet_basic eet_file eet_data_simple eet_data_nested eet_data_file_descriptor_01 eet_data_file_descriptor_02 eet_data_cipher_decipher +examples_PROGRAMS = eet_basic eet_file eet_data_simple eet_data_nested eet_data_file_descriptor_01 eet_data_file_descriptor_02 eet_data_cipher_decipher eet_basic_SOURCES = eet-basic.c eet_basic_LDADD = $(top_builddir)/src/lib/libeet.la @EINA_LIBS@