diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-02-02 17:36:55 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-02-02 17:36:55 +0000 |
commit | 29d1df5b9746e15c3d22a1665f6d0d0368534ebf (patch) | |
tree | 1839ac8e28958c93a36dbb73f161f109affbf70a /meta/packages/automake | |
parent | fa9f3991d5f5883a6fd37dd87911ffd2eb2587c5 (diff) | |
download | openembedded-core-29d1df5b9746e15c3d22a1665f6d0d0368534ebf.tar.gz openembedded-core-29d1df5b9746e15c3d22a1665f6d0d0368534ebf.tar.bz2 openembedded-core-29d1df5b9746e15c3d22a1665f6d0d0368534ebf.zip |
autoconf/automake: Switch to 2.65 and 1.11.1
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/automake')
-rw-r--r-- | meta/packages/automake/automake-native.inc | 6 | ||||
-rw-r--r-- | meta/packages/automake/automake-native_1.10.2.bb | 1 | ||||
-rw-r--r-- | meta/packages/automake/automake_1.10.2.bb | 39 | ||||
-rw-r--r-- | meta/packages/automake/automake_1.11.1.bb | 8 |
4 files changed, 0 insertions, 54 deletions
diff --git a/meta/packages/automake/automake-native.inc b/meta/packages/automake/automake-native.inc deleted file mode 100644 index f9f357f9f6..0000000000 --- a/meta/packages/automake/automake-native.inc +++ /dev/null @@ -1,6 +0,0 @@ -require automake.inc - -DEPENDS = "autoconf-native" -RDEPENDS_automake-native = "autoconf-native perl-native-runtime" - -inherit native diff --git a/meta/packages/automake/automake-native_1.10.2.bb b/meta/packages/automake/automake-native_1.10.2.bb deleted file mode 100644 index 8fc754e82f..0000000000 --- a/meta/packages/automake/automake-native_1.10.2.bb +++ /dev/null @@ -1 +0,0 @@ -require automake-native.inc diff --git a/meta/packages/automake/automake_1.10.2.bb b/meta/packages/automake/automake_1.10.2.bb deleted file mode 100644 index 9ba5cb3685..0000000000 --- a/meta/packages/automake/automake_1.10.2.bb +++ /dev/null @@ -1,39 +0,0 @@ -require automake.inc - -RDEPENDS_automake += "\ - autoconf \ - perl \ - perl-module-bytes \ - perl-module-constant \ - perl-module-cwd \ - perl-module-data-dumper \ - perl-module-dynaloader \ - perl-module-errno \ - perl-module-exporter-heavy \ - perl-module-file-basename \ - perl-module-file-compare \ - perl-module-file-copy \ - perl-module-file-glob \ - perl-module-file-spec-unix \ - perl-module-file-stat \ - perl-module-getopt-long \ - perl-module-io \ - perl-module-io-file \ - perl-module-posix \ - perl-module-strict \ - perl-module-text-parsewords \ - perl-module-vars " - -SRC_URI += "file://path_prog_fixes.patch;patch=1" - -NATIVE_INSTALL_WORKS = "1" -do_install () { - oe_runmake 'DESTDIR=${D}' install - install -d ${D}${datadir} - if [ ! -e ${D}${datadir}/aclocal ]; then - ln -sf aclocal-1.10 ${D}${datadir}/aclocal - fi - if [ ! -e ${D}${datadir}/automake ]; then - ln -sf automake-1.10 ${D}${datadir}/automake - fi -} diff --git a/meta/packages/automake/automake_1.11.1.bb b/meta/packages/automake/automake_1.11.1.bb index 0e75418181..067898a44f 100644 --- a/meta/packages/automake/automake_1.11.1.bb +++ b/meta/packages/automake/automake_1.11.1.bb @@ -37,14 +37,6 @@ NATIVE_INSTALL_WORKS = "1" do_install () { oe_runmake 'DESTDIR=${D}' install install -d ${D}${datadir} - if [ ! -e ${D}${datadir}/aclocal ]; then - ln -sf aclocal-1.10 ${D}${datadir}/aclocal - fi - if [ ! -e ${D}${datadir}/automake ]; then - ln -sf automake-1.10 ${D}${datadir}/automake - fi } BBCLASSEXTEND = "native" - -DEFAULT_PREFERENCE = "-1" |