diff options
author | Stefan Schmidt <stefan@osg.samsung.com> | 2016-03-31 16:22:04 +0200 |
---|---|---|
committer | Stefan Schmidt <stefan@osg.samsung.com> | 2016-03-31 16:29:32 +0200 |
commit | 0a03e633500466b86cca3b7a5f088735afd7cb56 (patch) | |
tree | e1738c8816d58859713b8af174a7464c53a665a4 /src/Makefile_Edje.am | |
parent | 08761352602f81962a09f7175dc50b1c3111c2dd (diff) | |
download | efl-0a03e633500466b86cca3b7a5f088735afd7cb56.tar.gz |
build: keep our CLEANFILES tidy to avoid argument list too long during clean
We have been putting the generated eo files and BUILT_SOURCES into CLEANFILES
several times. So far this have not been a real problem but with the elm merge
and more and more eo files showing up this did explode recently.
During make distcheck a lot of files kept being around and make complained about
them. It took some digging to find the arguments list to long error. If you want
details on this great limitation have a look here:
http://www.linuxjournal.com/article/6060
In our case we have been lucky enough that we just appened many files over and
over again. Not doing that solves the issue for now. My testing showed no
problems but if I missed something let me know.
Fixes T3386
Diffstat (limited to 'src/Makefile_Edje.am')
-rw-r--r-- | src/Makefile_Edje.am | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Makefile_Edje.am b/src/Makefile_Edje.am index 57f73b0750..2bcf7d2e24 100644 --- a/src/Makefile_Edje.am +++ b/src/Makefile_Edje.am @@ -17,10 +17,6 @@ BUILT_SOURCES += \ $(edje_eolian_c) \ $(edje_eolian_h) -CLEANFILES += \ - $(edje_eolian_c) \ - $(edje_eolian_h) - edjeeolianfilesdir = $(datadir)/eolian/include/edje-@VMAJ@ edjeeolianfiles_DATA = \ $(edje_eolian_files) \ |