From 803427eedbf62d58bd250d577f2c0afb5b68383d Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Sat, 5 Aug 2006 14:01:52 +0000 Subject: packages: sed -i s/^"include "/"require "/ */*.bb GNU sed rocks! Use require for the BitBake files within packages. In contrast to the conf files the authors of these files expected these files to be included. --- packages/mozilla/firefox_1.0.7.bb | 2 +- packages/mozilla/firefox_1.5.0.1.bb | 2 +- packages/mozilla/minimo_cvs.bb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/mozilla') diff --git a/packages/mozilla/firefox_1.0.7.bb b/packages/mozilla/firefox_1.0.7.bb index 668c9a6aeb..3a82dafd92 100644 --- a/packages/mozilla/firefox_1.0.7.bb +++ b/packages/mozilla/firefox_1.0.7.bb @@ -11,7 +11,7 @@ S = "${WORKDIR}/mozilla" inherit mozilla -include firefox.inc +require firefox.inc do_compile_prepend() { cp ${WORKDIR}/jsautocfg.h ${S}/js/src/ diff --git a/packages/mozilla/firefox_1.5.0.1.bb b/packages/mozilla/firefox_1.5.0.1.bb index 95c9509b69..8f888db5ca 100644 --- a/packages/mozilla/firefox_1.5.0.1.bb +++ b/packages/mozilla/firefox_1.5.0.1.bb @@ -10,7 +10,7 @@ DEFAULT_PREFERENCE = "-1" inherit mozilla -include firefox.inc +require firefox.inc do_compile_prepend() { cp ${WORKDIR}/jsautocfg.h ${S}/js/src/ diff --git a/packages/mozilla/minimo_cvs.bb b/packages/mozilla/minimo_cvs.bb index b2a0c8db4e..293e6b2a3e 100644 --- a/packages/mozilla/minimo_cvs.bb +++ b/packages/mozilla/minimo_cvs.bb @@ -21,7 +21,7 @@ export MOZ_CO_PROJECT="minimo" export MINIMO=1 export MOZ_OBJDIR="${WORKDIR}/build-${TARGET_SYS}" -include mozilla-cvs.inc +require mozilla-cvs.inc do_compile () { mozilla_do_compile -- cgit v1.2.3 From 690e9e12869eb453929481ec5f999bff1e36c9b3 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Sun, 6 Aug 2006 15:58:51 +0000 Subject: packages/*/*.bb: Stop GNUism on cp. -d -> -P, -a -> pPR... Fix GNUism on the usage of cp -d as --no-derefence -> -P --deference -> -L -r -> -R -a same as -dpR -> -PpR --- packages/mozilla/minimo_cvs.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/mozilla') diff --git a/packages/mozilla/minimo_cvs.bb b/packages/mozilla/minimo_cvs.bb index 293e6b2a3e..93cdc856d1 100644 --- a/packages/mozilla/minimo_cvs.bb +++ b/packages/mozilla/minimo_cvs.bb @@ -34,7 +34,7 @@ do_install () { oe_runmake package cd ${S} mkdir -p ${mozdir} - cp -rL $MOZ_OBJDIR/dist/minimo/* ${mozdir}/ + cp -RL $MOZ_OBJDIR/dist/minimo/* ${mozdir}/ mkdir -p ${D}${datadir}/applications install -m 0644 ${WORKDIR}/minimo.desktop ${D}${datadir}/applications/minimo.desktop mkdir -p ${D}${datadir}/pixmaps -- cgit v1.2.3