summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-05-10 22:24:47 -0700
committerJoshua Lock <josh@linux.intel.com>2011-10-17 15:26:17 -0700
commitda22a78bd424654e56c9201ec796294ac85ede50 (patch)
tree41b4c1cb85853d07c37dcce6a7cd95a3dc5e7ed6
parent0a69e60cfc060472c19de2b50fd1bb4235be94c6 (diff)
downloadpoky-da22a78bd424654e56c9201ec796294ac85ede50.tar.gz
zaurusd: fix a typo in Makefile
(From OE-Core rev: fcc7800834fda37df5a5c2bbd1da712ec8ff12b9) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-bsp/zaurusd/zaurusd/fix_makefile.patch19
-rw-r--r--meta/recipes-bsp/zaurusd/zaurusd_svn.bb5
2 files changed, 22 insertions, 2 deletions
diff --git a/meta/recipes-bsp/zaurusd/zaurusd/fix_makefile.patch b/meta/recipes-bsp/zaurusd/zaurusd/fix_makefile.patch
new file mode 100644
index 0000000000..9b28202521
--- /dev/null
+++ b/meta/recipes-bsp/zaurusd/zaurusd/fix_makefile.patch
@@ -0,0 +1,19 @@
1Upstream-Status: Pending
2
3Nitin A Kamble <nitin.a.kamble@intel.com> 2011/05/10
4Fix following build error:
5
6| Makefile:716: *** missing separator (did you mean TAB instead of 8 spaces?). Stop.
7| ERROR: oe_runmake failed
8
9Index: zaurusd/Makefile.am
10===================================================================
11--- zaurusd.orig/Makefile.am
12+++ zaurusd/Makefile.am
13@@ -4,5 +4,5 @@ SUBDIRS = apps config scripts
14 MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.sub configure depcomp install-sh ltmain.sh Makefile.in missing
15
16 snapshot:
17- $(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
18+ $(MAKE) dist distdir=$(PACKAGE)-snap`date +"%Y%m%d"`
19
diff --git a/meta/recipes-bsp/zaurusd/zaurusd_svn.bb b/meta/recipes-bsp/zaurusd/zaurusd_svn.bb
index 455a29fa9e..556d158f2b 100644
--- a/meta/recipes-bsp/zaurusd/zaurusd_svn.bb
+++ b/meta/recipes-bsp/zaurusd/zaurusd_svn.bb
@@ -5,9 +5,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
5DEPENDS = "tslib" 5DEPENDS = "tslib"
6RDEPENDS_${PN} = "xrandr" 6RDEPENDS_${PN} = "xrandr"
7PV = "0.0+svnr${SRCPV}" 7PV = "0.0+svnr${SRCPV}"
8PR = "r2" 8PR = "r3"
9 9
10SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=zaurusd;proto=http" 10SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=zaurusd;proto=http \
11 file://fix_makefile.patch"
11 12
12S = "${WORKDIR}/${PN}" 13S = "${WORKDIR}/${PN}"
13 14