summaryrefslogtreecommitdiffstats
path: root/meta/packages/automake
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-02-02 17:36:55 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2010-02-02 17:36:55 +0000
commit29d1df5b9746e15c3d22a1665f6d0d0368534ebf (patch)
tree1839ac8e28958c93a36dbb73f161f109affbf70a /meta/packages/automake
parentfa9f3991d5f5883a6fd37dd87911ffd2eb2587c5 (diff)
downloadpoky-29d1df5b9746e15c3d22a1665f6d0d0368534ebf.tar.gz
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.inc6
-rw-r--r--meta/packages/automake/automake-native_1.10.2.bb1
-rw-r--r--meta/packages/automake/automake_1.10.2.bb39
-rw-r--r--meta/packages/automake/automake_1.11.1.bb8
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 @@
1require automake.inc
2
3DEPENDS = "autoconf-native"
4RDEPENDS_automake-native = "autoconf-native perl-native-runtime"
5
6inherit 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 @@
1require 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 @@
1require automake.inc
2
3RDEPENDS_automake += "\
4 autoconf \
5 perl \
6 perl-module-bytes \
7 perl-module-constant \
8 perl-module-cwd \
9 perl-module-data-dumper \
10 perl-module-dynaloader \
11 perl-module-errno \
12 perl-module-exporter-heavy \
13 perl-module-file-basename \
14 perl-module-file-compare \
15 perl-module-file-copy \
16 perl-module-file-glob \
17 perl-module-file-spec-unix \
18 perl-module-file-stat \
19 perl-module-getopt-long \
20 perl-module-io \
21 perl-module-io-file \
22 perl-module-posix \
23 perl-module-strict \
24 perl-module-text-parsewords \
25 perl-module-vars "
26
27SRC_URI += "file://path_prog_fixes.patch;patch=1"
28
29NATIVE_INSTALL_WORKS = "1"
30do_install () {
31 oe_runmake 'DESTDIR=${D}' install
32 install -d ${D}${datadir}
33 if [ ! -e ${D}${datadir}/aclocal ]; then
34 ln -sf aclocal-1.10 ${D}${datadir}/aclocal
35 fi
36 if [ ! -e ${D}${datadir}/automake ]; then
37 ln -sf automake-1.10 ${D}${datadir}/automake
38 fi
39}
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"
37do_install () { 37do_install () {
38 oe_runmake 'DESTDIR=${D}' install 38 oe_runmake 'DESTDIR=${D}' install
39 install -d ${D}${datadir} 39 install -d ${D}${datadir}
40 if [ ! -e ${D}${datadir}/aclocal ]; then
41 ln -sf aclocal-1.10 ${D}${datadir}/aclocal
42 fi
43 if [ ! -e ${D}${datadir}/automake ]; then
44 ln -sf automake-1.10 ${D}${datadir}/automake
45 fi
46} 40}
47 41
48BBCLASSEXTEND = "native" 42BBCLASSEXTEND = "native"
49
50DEFAULT_PREFERENCE = "-1"