[pisa-src] r1561 - trunk/Makefile.am

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Sat, 07 Nov 2009 15:32:50 +0100

Author: biurrun
Date: Sat Nov  7 15:32:50 2009
New Revision: 1561

Log:
Automake variables do not support wildcards directly.
So use the $(wildcard) make function instead.
This fixes 'make distcheck'.

Modified:
   trunk/Makefile.am

Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am   Sat Nov  7 13:27:46 2009        (r1560)
+++ trunk/Makefile.am   Sat Nov  7 15:32:50 2009        (r1561)
@@ -5,27 +5,27 @@
 ACLOCAL_AMFLAGS  = -I m4
 
 # For "make dist"
-EXTRA_DIST = INSTALL                     \
-             LICENSE                     \
-             community-operator/*.h      \
-             docs/*.txt                  \
-             docs/Doxyfile               \
-             libpisa/*.h                 \
-             pairing/*.h                 \
-             pairing/readme.txt          \
-             pairing/defaults/*          \
-             performance/*.h             \
-             pisacd/*.conf               \
-             pisacd/*.h                  \
-             pisasd/*.conf               \
-             pisasd/*.h                  \
-             tools/*.sh                  \
-             tools/packaging/*.sh        \
-             tools/packaging/*-init.d-*  \
-             tools/packaging/debbuild    \
-             tools/packaging/pisa-*.spec \
-             tools/tunnel/*.sh           \
-             tools/writeff.pl            \
+EXTRA_DIST = INSTALL                                 \
+             LICENSE                                 \
+             $(wildcard community-operator/*.h)      \
+             $(wildcard docs/*.txt)                  \
+             docs/Doxyfile                           \
+             $(wildcard libpisa/*.h)                 \
+             $(wildcard pairing/*.h)                 \
+             pairing/readme.txt                      \
+             $(wildcard pairing/defaults/*)          \
+             $(wildcard performance/*.h)             \
+             $(wildcard pisacd/*.conf)               \
+             $(wildcard pisacd/*.h)                  \
+             $(wildcard pisasd/*.conf)               \
+             $(wildcard pisasd/*.h)                  \
+             $(wildcard tools/*.sh)                  \
+             $(wildcard tools/packaging/*.sh)        \
+             $(wildcard tools/packaging/*-init.d-*)  \
+             tools/packaging/debbuild                \
+             $(wildcard tools/packaging/pisa-*.spec) \
+             $(wildcard tools/tunnel/*.sh)           \
+             tools/writeff.pl                        \
              tools/tunnel/screamer.rb
 
 sysconf_DATA = pisacd/pisacd.conf           \

Other related posts:

  • » [pisa-src] r1561 - trunk/Makefile.am - Diego Biurrun