diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2006-01-19 00:38:58 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-19 00:38:58 +0000 |
commit | 87019a4d53f22e178570dc659a39e2cddfe5f519 (patch) | |
tree | 5b20eea961b63f2796c08b31bf3d768c6a700d96 | |
parent | e64c2fdff467c5ad785794b4d89dc8dd311b87d3 (diff) |
ctrlproxy: fix configure step in 2.6.2
-rw-r--r-- | packages/ctrlproxy/ctrlproxy_2.6.2.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/packages/ctrlproxy/ctrlproxy_2.6.2.bb b/packages/ctrlproxy/ctrlproxy_2.6.2.bb index b3de2db061..6fdf0d8c2c 100644 --- a/packages/ctrlproxy/ctrlproxy_2.6.2.bb +++ b/packages/ctrlproxy/ctrlproxy_2.6.2.bb @@ -3,7 +3,7 @@ SECTION = "console/network" PRIORITY = "optional" MAINTAINER = "NSLU2 Linux <nslu2-linux@yahoogroups.com>" DEPENDS = "glib-2.0 libxml2 popt pcre openssl" -PR = "r0" +PR = "r1" LICENSE = "GPL" SRC_URI = "http://sources.nslu2-linux.org/sources/ctrlproxy-2.6.2.tar.gz" @@ -16,6 +16,13 @@ inherit autotools #INITSCRIPT_PARAMS = "defaults 84" # CONFFILES_${PN} = "${sysconfdir}/foo.conf" +# To fix this error in autotools_do_configure (which arises after a +# change to pkg-config pkg.m4): +#configure:314: error: possibly undefined macro: PKG_LIBS +do_configure() { + oe_runconf +} + CFLAGS += "-L${STAGING_LIBDIR}" #do_install() { |