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 | poky-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.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 @@ | |||
1 | require automake.inc | ||
2 | |||
3 | DEPENDS = "autoconf-native" | ||
4 | RDEPENDS_automake-native = "autoconf-native perl-native-runtime" | ||
5 | |||
6 | 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 @@ | |||
1 | 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 @@ | |||
1 | require automake.inc | ||
2 | |||
3 | RDEPENDS_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 | |||
27 | SRC_URI += "file://path_prog_fixes.patch;patch=1" | ||
28 | |||
29 | NATIVE_INSTALL_WORKS = "1" | ||
30 | do_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" | |||
37 | do_install () { | 37 | do_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 | ||
48 | BBCLASSEXTEND = "native" | 42 | BBCLASSEXTEND = "native" |
49 | |||
50 | DEFAULT_PREFERENCE = "-1" | ||