diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-25 13:04:50 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-25 13:04:50 +0000 |
commit | 5b83a5d78dbef88e07cec04a64c61cb989ae2a75 (patch) | |
tree | fb762eb39c5a4525e3327284056840fd8be7f182 /meta/packages/pointercal | |
parent | fd9b783a83a0539a41c3347c5d7ed05aeae566c2 (diff) | |
download | poky-5b83a5d78dbef88e07cec04a64c61cb989ae2a75.tar.gz |
pointercal: sync with OE (no package changes)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2968 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/pointercal')
-rw-r--r-- | meta/packages/pointercal/pointercal_0.0.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/packages/pointercal/pointercal_0.0.bb b/meta/packages/pointercal/pointercal_0.0.bb index badadc6202..4fa8c1cc0e 100644 --- a/meta/packages/pointercal/pointercal_0.0.bb +++ b/meta/packages/pointercal/pointercal_0.0.bb | |||
@@ -1,13 +1,10 @@ | |||
1 | DESCRIPTION = "Touchscreen calibration data" | 1 | DESCRIPTION = "Touchscreen calibration data" |
2 | SECTION = "base" | 2 | SECTION = "base" |
3 | PR = "r2" | 3 | PR = "r4" |
4 | 4 | ||
5 | SRC_URI = "file://pointercal" | 5 | SRC_URI = "file://pointercal" |
6 | S = "${WORKDIR}" | 6 | S = "${WORKDIR}" |
7 | 7 | ||
8 | ALLOW_EMPTY_${PN} = "1" | ||
9 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
10 | |||
11 | do_install() { | 8 | do_install() { |
12 | # Only install file if it has a contents | 9 | # Only install file if it has a contents |
13 | if [ -s ${S}/pointercal ]; then | 10 | if [ -s ${S}/pointercal ]; then |
@@ -15,3 +12,7 @@ do_install() { | |||
15 | install -m 0644 ${S}/pointercal ${D}${sysconfdir}/ | 12 | install -m 0644 ${S}/pointercal ${D}${sysconfdir}/ |
16 | fi | 13 | fi |
17 | } | 14 | } |
15 | |||
16 | ALLOW_EMPTY_${PN} = "1" | ||
17 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
18 | |||