diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2007-05-02 05:58:32 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2007-05-02 05:58:32 +0000 |
commit | ff10fe9967ca0de822af875665dbcbabafd19b1b (patch) | |
tree | f4af77d3abdb0bbef6c26cb91f2b861f15e2d563 | |
parent | 25bc38faefa2262bfaebc5fa7a5ff6c915c4583b (diff) |
net-snmp 5.1.2: Fix for do_configure hanging when using bitbake
1.8.2. We need to pass "--with-defaults" to configure tell it we want
the defaults so it doesn't warn that the defaults are going to be
used and ask them to confirm each of the defaults.
-rw-r--r-- | packages/net-snmp/net-snmp_5.1.2.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/net-snmp/net-snmp_5.1.2.bb b/packages/net-snmp/net-snmp_5.1.2.bb index 302e7eed52..330e13e0ef 100644 --- a/packages/net-snmp/net-snmp_5.1.2.bb +++ b/packages/net-snmp/net-snmp_5.1.2.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Various tools relating to the Simple Network Management Protocol" HOMEPAGE = "http://www.net-snmp.org/" LICENSE = "BSD" DEPENDS = "openssl" -PR = "r2" +PR = "r3" SRC_URI = "${SOURCEFORGE_MIRROR}/net-snmp/net-snmp-${PV}.tar.gz \ file://uclibc-fix.patch;patch=1 \ @@ -13,7 +13,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/net-snmp/net-snmp-${PV}.tar.gz \ inherit autotools PARALLEL_MAKE = "" -EXTRA_OECONF = "--enable-shared --disable-manuals" +EXTRA_OECONF = "--enable-shared --disable-manuals --with-defaults" EXTRA_OEMAKE = "INSTALL_PREFIX=${D}" do_configure() { |