[hipl-commit] [trunk] Rev 4139: Fix 'make dist' with out-of-tree builds.

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Tue, 6 Apr 2010 16:38:08 +0300

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: 06/04/2010 at 16:38:08
Revision: 4139
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  Fix 'make dist' with out-of-tree builds.
  The documentation images need to be fetched from the source directory.

Modified:
  M  Makefile.am

=== modified file 'Makefile.am'
--- Makefile.am 2010-04-06 12:54:30 +0000
+++ Makefile.am 2010-04-06 13:37:14 +0000
@@ -628,7 +628,7 @@
 doxygen:
        doxygen Doxyfile
 
-dist_doc_DATA = doc/HOWTO.txt $(wildcard doc/*.png)
+dist_doc_DATA = doc/HOWTO.txt $(wildcard $(addprefix $(srcdir)/doc/,*.png))
 
 doc/HOWTO.txt: doc/HOWTO.xml
        xmlto -o $(@D) txt $<

Other related posts:

  • » [hipl-commit] [trunk] Rev 4139: Fix 'make dist' with out-of-tree builds. - Diego Biurrun