<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">comments below<br>
      <br>
      On 02/18/2014 03:56 AM, Aline Manera wrote:<br>
    </div>
    <blockquote
      cite="mid:1392666981-25375-2-git-send-email-alinefm@linux.vnet.ibm.com"
      type="cite">
      <pre wrap="">From: Aline Manera <a class="moz-txt-link-rfc2396E" href="mailto:alinefm@br.ibm.com">&lt;alinefm@br.ibm.com&gt;</a>

To get the help html files dinamically the Makefile was using the
following code:

DITA_HTML_FILES = $(patsubst %.dita,%.html,$(wildcard *.dita))
$(wildcard *.html)

But it does not well while building deb packages as it cointans
duplicated values:

 /bin/mkdir -p '/tmp/tmp.86vGERYO70/usr/share/kimchi/ui/pages/help'
 /usr/bin/install -c -m 644 guests.html storage.html templates.html
guests.html index.html storage.html templates.html
'/tmp/tmp.86vGERYO70/usr/share/kimchi/ui/pages/help'
/usr/bin/install: will not overwrite just-created
`/tmp/tmp.86vGERYO70/usr/share/kimchi/ui/pages/help/guests.html' with
`guests.html'
(...)

So use $(if()) statement to get html files from one source or from
another to avoid the errors above.

Signed-off-by: Aline Manera <a class="moz-txt-link-rfc2396E" href="mailto:alinefm@br.ibm.com">&lt;alinefm@br.ibm.com&gt;</a>
---
 ui/pages/help/Makefile.am |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/ui/pages/help/Makefile.am b/ui/pages/help/Makefile.am
index 61ea209..81d7e90 100644
--- a/ui/pages/help/Makefile.am
+++ b/ui/pages/help/Makefile.am
@@ -17,14 +17,15 @@
 # License along with this library; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA

-DITA_HTML_FILES = $(patsubst %.dita,%.html,$(wildcard *.dita)) $(wildcard *.html)
+DITA_HTML_FILES = $(patsubst %.dita,%.html,$(wildcard *.dita))
+HTML_FILES = $(if $(wildcard *.html), $(wildcard *.html), $(DITA_HTML_FILES))</pre>
    </blockquote>
    I have a try it can work without if on rpm package, but not try on
    deb package.<br>
    <blockquote
      cite="mid:1392666981-25375-2-git-send-email-alinefm@linux.vnet.ibm.com"
      type="cite">
      <pre wrap="">
 DITA_XSL_FILE = dita-help.xsl</pre>
    </blockquote>
    miss EXTRA_DIST<br>
    <span class="st">The <em>EXTRA_DIST</em> argument holds a list of
      all the files that are part of the </span><br>
    <span class="st">package, but are not installed by default and were
      not specified
      in any other way.
      <br>
      <br>
    </span>
    <blockquote
      cite="mid:1392666981-25375-2-git-send-email-alinefm@linux.vnet.ibm.com"
      type="cite">
      <pre wrap="">

 helpdir = $(datadir)/kimchi/ui/pages/help

-dist_help_DATA = $(DITA_HTML_FILES) $(NULL)
+dist_help_DATA = $(HTML_FILES) $(NULL)

 %.html: %.dita $(DITA_XSL_FILE)
         xsltproc -o $@ $(DITA_XSL_FILE) $&lt;

-CLEANFILES = $(DITA_HTML_FILES)
+CLEANFILES = $(HTML_FILES)
</pre>
    </blockquote>
    <br>
    <br>
    <pre class="moz-signature" cols="72">-- 
Thanks and best regards!

Sheldon Feng(&#20911;&#23569;&#21512;)<a class="moz-txt-link-rfc2396E" href="mailto:shaohef@linux.vnet.ibm.com">&lt;shaohef@linux.vnet.ibm.com&gt;</a>
IBM Linux Technology Center</pre>
  </body>
</html>