From 901e5d5c73cc12268083e20bcfb93dadf361c3f5 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Wed, 22 Oct 2008 09:50:17 +0200 Subject: [PATCH] Fix dependency in ftdipp for 'make dist' on a clean tree --- ftdipp/Makefile.am | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/ftdipp/Makefile.am b/ftdipp/Makefile.am index 2ce8fdc..e80b15e 100644 --- a/ftdipp/Makefile.am +++ b/ftdipp/Makefile.am @@ -4,11 +4,12 @@ INCLUDES= -I$(top_srcdir)/src $(all_includes) @BOOST_CPPFLAGS@ # the library search path. lib_LTLIBRARIES = libftdipp.la include_HEADERS = ftdi.hpp -libftdipp_la_SOURCES = $(top_builddir)/src/libftdi.la ftdi.cpp +libftdipp_la_SOURCES = ftdi.cpp # Note: If you specify a:b:c as the version in the next line, # the library that is made has version (a-c).c.b. In this # example, the version is 2.1.2. (3:2:1) libftdipp_la_LDFLAGS = -version-info 16:0:15 $(all_libraries) @BOOST_LDFLAGS@ +libftdipp_la_LIBADD = $(top_builddir)/src/libftdi.la EXTRA_DIST = CMakeLists.txt -- 1.7.1