diff options
-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 badadc620..4fa8c1cc0 100644 --- a/meta/packages/pointercal/pointercal_0.0.bb +++ b/meta/packages/pointercal/pointercal_0.0.bb @@ -1,13 +1,10 @@ DESCRIPTION = "Touchscreen calibration data" SECTION = "base" -PR = "r2" +PR = "r4" SRC_URI = "file://pointercal" S = "${WORKDIR}" -ALLOW_EMPTY_${PN} = "1" -PACKAGE_ARCH = "${MACHINE_ARCH}" - do_install() { # Only install file if it has a contents if [ -s ${S}/pointercal ]; then @@ -15,3 +12,7 @@ do_install() { install -m 0644 ${S}/pointercal ${D}${sysconfdir}/ fi } + +ALLOW_EMPTY_${PN} = "1" +PACKAGE_ARCH = "${MACHINE_ARCH}" + |