From e5a86413e292c4890f84938b67e049a635b11487 Mon Sep 17 00:00:00 2001 From: florian.boor@gmail.com Date: Fri, 28 Jun 2013 04:45:51 -0400 Subject: Apply patch by Paul Barker Fix libopkg header installation. When opkg is built outside the source directory, libopkg headers aren't all installed as the search path for headers only includes the directory that make is being ran in, not the source directory. So we fix this by adding $(srcdir)/*.h to the list of header files to install. git-svn-id: http://opkg.googlecode.com/svn/trunk@650 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'libopkg') diff --git a/libopkg/Makefile.am b/libopkg/Makefile.am index 043c5c4..b6f4f7b 100644 --- a/libopkg/Makefile.am +++ b/libopkg/Makefile.am @@ -2,7 +2,7 @@ AM_CFLAGS=-Wall -DHOST_CPU_STR=\"@host_cpu@\" -DBUILD_CPU=@build_cpu@ -DLIBDIR=\"@libdir@\" -DOPKGLIBDIR=\"@opkglibdir@\" -DOPKGETCDIR=\"@opkgetcdir@\" -DOPKGLOCKFILE=\"@opkglockfile@\" -DDATADIR=\"@datadir@\" -I$(top_srcdir) $(BIGENDIAN_CFLAGS) $(CURL_CFLAGS) $(GPGME_CFLAGS) $(PATHFINDER_CFLAGS) libopkg_includedir=$(includedir)/libopkg -libopkg_include_HEADERS= *.h +libopkg_include_HEADERS= *.h $(srcdir)/*.h opkg_libcore_sources = \ -- cgit v0.9.1