diff options
author | Holger Freyther <zecke@selfish.org> | 2006-07-02 15:38:11 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-07-02 15:38:11 +0000 |
commit | db3f9ad7c1fa0d1549de183b5f05e30b2f8dcb3c (patch) | |
tree | 5e4c3656455c28cdba0375b260a66b4197a806ea /packages/autoconf/autoconf-native_2.59.bb | |
parent | 41bd48366810c868f1991a4baf0bedee90af58b0 (diff) |
packages/autoconf/autoconf-native: Do not RRECOMMEND automake-native
For the native case do not ask BitBake to build automake-native,
packages that need automake can DEPEND on it directly. This avoids
circular depenendencies as autoconf-native would ask for automake-native
and automake-native would ask for autoconf-native again.
This 'fix' (I think it is proper) avoids build errors on broken
debian systems. And making OpenEmbedded independant of the host
once again.
Diffstat (limited to 'packages/autoconf/autoconf-native_2.59.bb')
-rw-r--r-- | packages/autoconf/autoconf-native_2.59.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/autoconf/autoconf-native_2.59.bb b/packages/autoconf/autoconf-native_2.59.bb index 21a2002453..aac4b67ada 100644 --- a/packages/autoconf/autoconf-native_2.59.bb +++ b/packages/autoconf/autoconf-native_2.59.bb @@ -2,7 +2,7 @@ SECTION = "devel" include autoconf_${PV}.bb DEPENDS = "m4-native gnu-config-native" RDEPENDS_${PN} = "m4-native gnu-config-native" -RRECOMMENDS_${PN} = "automake-native" +RRECOMMENDS_${PN} = "" S = "${WORKDIR}/autoconf-${PV}" FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/autoconf-${PV}" |