diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2013-01-04 20:55:12 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2013-01-04 20:55:12 +0000 |
commit | 2b29626d8d5aa47119759d0ef1d0876674f06254 (patch) | |
tree | 13622da45e0f86f8fde5bc8d50e953e958495691 /src/Makefile_Escape.am | |
parent | 7abf31c88264c2a7692ce61c7985bc49e979163e (diff) |
efl: fix make dist.
Carefully compared 'svn export' and 'make dist' results and couple of
files were missing.
Changes:
* Makefile.am: removed all .pc from EXTRA_DIST, we shouldn't
distribute them here as they will contain ./configure data such as
install location.
* src/Makefile.am: moved all if-endif to files, otherwise EXTRA_DIST
won't work properly. We must EXTRA_DIST outside of the if-endif
block.
* static_libs/liblinebreak: removed couple of unused files.
SVN revision: 82241
Diffstat (limited to '')
-rw-r--r-- | src/Makefile_Escape.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile_Escape.am b/src/Makefile_Escape.am index 2b0db2ae37..e3934a2ab8 100644 --- a/src/Makefile_Escape.am +++ b/src/Makefile_Escape.am | |||
@@ -1,3 +1,4 @@ | |||
1 | if HAVE_PS3 | ||
1 | 2 | ||
2 | ### Library | 3 | ### Library |
3 | 4 | ||
@@ -22,3 +23,5 @@ lib_escape_libescape_la_CPPFLAGS = \ | |||
22 | -I$(top_srcdir)/src/lib/escape | 23 | -I$(top_srcdir)/src/lib/escape |
23 | lib_escape_libescape_la_LIBADD = @ESCAPE_LIBS@ | 24 | lib_escape_libescape_la_LIBADD = @ESCAPE_LIBS@ |
24 | lib_escape_libescape_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | 25 | lib_escape_libescape_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ |
26 | |||
27 | endif | ||