From 3ab54913162092506e1d28e33d50fffa8123c91a Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Mon, 20 Apr 2009 13:38:49 +0000 Subject: [PATCH] fix distcheck on couple packages, problems with EXTRA_DIST Do NOT include dirs in EXTRA_DIST (embryo, eet, ecore, evas, edje, efreet) as it will include .svn directories! EXTRA_DIST does not take a glob as ETK did, use $(wildcard glob) to expand it. And do not forget about adding extra files to EXTRA_DIST (wizard) and DIST_SUBDIRS (fileman_opinfo). SVN revision: 40247 --- legacy/ecore/doc/Makefile.am | 2 +- legacy/edje/doc/Makefile.am | 2 +- legacy/eet/doc/Makefile.am | 2 +- legacy/efreet/doc/Makefile.am | 2 +- legacy/embryo/doc/Makefile.am | 2 +- legacy/evas/doc/Makefile.am | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/legacy/ecore/doc/Makefile.am b/legacy/ecore/doc/Makefile.am index 8b1483f114..0ea8777e77 100644 --- a/legacy/ecore/doc/Makefile.am +++ b/legacy/ecore/doc/Makefile.am @@ -29,4 +29,4 @@ doc: endif -EXTRA_DIST = Doxyfile img e.css head.html foot.html ecore.dox.in +EXTRA_DIST = Doxyfile $(wildcard img/*.*) e.css head.html foot.html ecore.dox.in diff --git a/legacy/edje/doc/Makefile.am b/legacy/edje/doc/Makefile.am index a72dd0402a..4a3b39f049 100644 --- a/legacy/edje/doc/Makefile.am +++ b/legacy/edje/doc/Makefile.am @@ -32,4 +32,4 @@ doc: endif -EXTRA_DIST = Doxyfile e.css foot.html head.html img edje.dox.in +EXTRA_DIST = Doxyfile e.css foot.html head.html $(wildcard img/*.*) edje.dox.in diff --git a/legacy/eet/doc/Makefile.am b/legacy/eet/doc/Makefile.am index aa9668cad1..0793a9a209 100644 --- a/legacy/eet/doc/Makefile.am +++ b/legacy/eet/doc/Makefile.am @@ -30,4 +30,4 @@ doc: endif -EXTRA_DIST = Doxyfile e.css foot.html head.html img/ eet.dox.in +EXTRA_DIST = Doxyfile e.css foot.html head.html $(wildcard img/*.*) eet.dox.in diff --git a/legacy/efreet/doc/Makefile.am b/legacy/efreet/doc/Makefile.am index 8a4cbe1e96..584a751afc 100644 --- a/legacy/efreet/doc/Makefile.am +++ b/legacy/efreet/doc/Makefile.am @@ -29,4 +29,4 @@ doc: endif -EXTRA_DIST = Doxyfile.in images e.css head.html foot.html +EXTRA_DIST = Doxyfile.in $(wildcard images/*.*) e.css head.html foot.html diff --git a/legacy/embryo/doc/Makefile.am b/legacy/embryo/doc/Makefile.am index f4cf21d532..a70b4bd508 100644 --- a/legacy/embryo/doc/Makefile.am +++ b/legacy/embryo/doc/Makefile.am @@ -30,4 +30,4 @@ doc: endif -EXTRA_DIST = Doxyfile e.css foot.html head.html img embryo.dox.in +EXTRA_DIST = Doxyfile e.css foot.html head.html $(wildcard img/*.*) embryo.dox.in diff --git a/legacy/evas/doc/Makefile.am b/legacy/evas/doc/Makefile.am index 5829546643..1022871a02 100644 --- a/legacy/evas/doc/Makefile.am +++ b/legacy/evas/doc/Makefile.am @@ -29,4 +29,4 @@ doc: endif -EXTRA_DIST = Doxyfile img e.css head.html foot.html evas.dox.in +EXTRA_DIST = Doxyfile $(wildcard img/*.*) e.css head.html foot.html evas.dox.in