Hi,

newer autotools don't seem to like listing files to install twice. Attached is 
a patch that fixes the problem ($(sort <filelist>) removes duplicate 
entries).

Cheers,
   Stefan.
Index: libupnp4-1.8.0~cvs20080628/upnp/sample/Makefile.am
===================================================================
--- libupnp4-1.8.0~cvs20080628.orig/upnp/sample/Makefile.am	2009-10-11 15:22:39.000000000 +0200
+++ libupnp4-1.8.0~cvs20080628/upnp/sample/Makefile.am	2009-10-11 15:22:36.000000000 +0200
@@ -69,8 +69,9 @@
 if WITH_DOCUMENTATION
 examplesdir = $(docdir)/examples
 examples_DATA = \
-		$(upnp_tv_ctrlpt_SOURCES) \
-		$(upnp_tv_device_SOURCES)
+		$(sort \
+			$(upnp_tv_ctrlpt_SOURCES) \
+			$(upnp_tv_device_SOURCES))
 endif
 
 

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to