diff options
author | ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2008-12-14 23:52:36 (EST) |
---|---|---|
committer | ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2008-12-14 23:52:36 (EST) |
commit | 41315dec944e15d0e70a38592b5c9494d920108c (patch) | |
tree | 50ef578cf4c4ebb2d6042d05bdb51c4fe4c97c56 | |
parent | d879963c09e74fed1d1ad2168d2d1fa1aa01f442 (diff) |
opkg: catch up with removals and fix include statement in opkg-frontend.c
git-svn-id: http://opkg.googlecode.com/svn/trunk@44 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | configure.ac | 5 | ||||
-rw-r--r-- | src/opkg-frontend.c | 2 |
4 files changed, 7 insertions, 8 deletions
@@ -0,0 +1,4 @@ +2008-02-29 Michael Lauer <mickey@openmoko.org> + + * src/opkg-frontend.c: fix include statement to make it build again + * many files: remove autogenerated stuff and familiar directory diff --git a/Makefile.am b/Makefile.am index ca1d085..3550b7d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = familiar libbb libopkg tests src +SUBDIRS = libbb libopkg tests src HOST_CPU=@host_cpu@ BUILD_CPU=@build_cpu@ @@ -26,4 +26,4 @@ MAINTAINERCLEANFILES= \ aclocal.m4 package: all-recursive - STRIPPROG=$(STRIP) familiar/rules INSTALL=$$PWD/install-sh binary-arch + STRIPPROG=$(STRIP) INSTALL=$$PWD/install-sh binary-arch diff --git a/configure.ac b/configure.ac index e36b664..117253b 100644 --- a/configure.ac +++ b/configure.ac @@ -131,11 +131,6 @@ AC_OUTPUT( libopkg/Makefile tests/Makefile src/Makefile - familiar/Makefile - familiar/control - familiar/control-unstripped - familiar/libopkg-control - familiar/libopkg-dev-control libbb/Makefile libopkg.pc opkg.h) diff --git a/src/opkg-frontend.c b/src/opkg-frontend.c index 08a3e49..e248a6e 100644 --- a/src/opkg-frontend.c +++ b/src/opkg-frontend.c @@ -18,7 +18,7 @@ */ -#include <libopkg/libopkg.h> +#include <libopkg.h> /* This is really small, eh? ;-) */ |