diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-05-27 21:21:55 +0000 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-05-27 21:21:55 +0000 |
commit | 87439cd440afb3c6561ec0f1eceb2b6e67105d04 (patch) | |
tree | 6d8ae6b472679395543e428a6911ba86b535310e /packages/automake | |
parent | bac17110187eb7e61e81531e09ac76c23d96210a (diff) |
automake-1.10: fix do_install
- fix do_install 1.9 vs 1.10 linking
- put DEFAULT_PREFERENCE = "-1" up, so we see without scrolling why
the recipe is not build
Diffstat (limited to 'packages/automake')
-rw-r--r-- | packages/automake/automake_1.10.bb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/automake/automake_1.10.bb b/packages/automake/automake_1.10.bb index eef69f4e4a..79fa7fd2ea 100644 --- a/packages/automake/automake_1.10.bb +++ b/packages/automake/automake_1.10.bb @@ -2,6 +2,7 @@ DESCRIPTION = "A tool for automatically generating Makefiles." LICENSE = "GPL" HOMEPAGE = "http://www.gnu.org/software/automake/" SECTION = "devel" +DEFAULT_PREFERENCE = "-1" SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.bz2 \ ${@['file://path_prog_fixes.patch;patch=1', ''][bb.data.inherits_class('native', d)]}" @@ -21,11 +22,9 @@ do_install () { oe_runmake 'DESTDIR=${D}' install install -d ${D}${datadir} if [ ! -e ${D}${datadir}/aclocal ]; then - ln -sf aclocal-1.9 ${D}${datadir}/aclocal + ln -sf aclocal-1.10 ${D}${datadir}/aclocal fi if [ ! -e ${D}${datadir}/automake ]; then - ln -sf automake-1.9 ${D}${datadir}/automake + ln -sf automake-1.10 ${D}${datadir}/automake fi } - -DEFAULT_PREFERENCE = "-1" |