mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Quoting fixes
* We have various variables which are either not quoted at all or are * half quoted. This patch fixes the bad exmaples so everything is consistent. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
parent
b85b2dd813
commit
8cd93743d7
|
|
@ -23,5 +23,5 @@ do_install() {
|
|||
}
|
||||
|
||||
PACKAGES = "${PN}"
|
||||
FILES_${PN} = ${datadir}/uhd/images
|
||||
FILES_${PN} = "${datadir}/uhd/images"
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ LICENSE ="BSD-3-Clause"
|
|||
LIC_FILES_CHKSUM = "file://cdjpeg.h;endline=12;md5=78fa8dbac547bb5b2a0e6457a6cfe21d \
|
||||
file://jpeglib.h;endline=14;md5=7bb9a39828a1b1e84acd4e8aec1e5532 \
|
||||
file://djpeg.c;endline=13;md5=e85613b52f2906c5dfc0e21ec902cb33 \
|
||||
|
||||
"
|
||||
PV = "8c+1.2.0"
|
||||
SRCREV = "733"
|
||||
SRC_URI = "svn://libjpeg-turbo.svn.sourceforge.net/svnroot/libjpeg-turbo;proto=https;module=trunk"
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ PR = "r45"
|
|||
# which will be next minor release and so on.
|
||||
|
||||
BINV = "${PV}.4"
|
||||
SRCREV = 181733
|
||||
SRCREV = "181733"
|
||||
BRANCH = "gcc-4_5-branch"
|
||||
PR_append = "+svnr${SRCPV}"
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
|
|||
PR = "r4"
|
||||
|
||||
# ltrace is not ported to sh3/sh4 targets at this time
|
||||
COMPATIBLE_TARGET_SYS = (?!sh[34])
|
||||
COMPATIBLE_TARGET_SYS = "(?!sh[34])"
|
||||
|
||||
SRC_URI = "\
|
||||
${DEBIAN_MIRROR}/main/l/ltrace/ltrace_${PV}.orig.tar.gz;name=archive \
|
||||
|
|
|
|||
|
|
@ -22,4 +22,4 @@ inherit autotools
|
|||
|
||||
EXTRA_OECONF = "--disable-vapigen"
|
||||
|
||||
FILES_${PN}-doc += ${datadir}/devhelp
|
||||
FILES_${PN}-doc += "${datadir}/devhelp"
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ FILES_${PN}-mibs = "${datadir}/snmp/mibs"
|
|||
FILES_${PN}-server = "${sbindir}/* ${sysconfdir}"
|
||||
FILES_${PN}-client = "${bindir}/* ${datadir}/snmp/"
|
||||
FILES_${PN}-dbg += "${libdir}/.debug/ ${sbindir}/.debug/ ${bindir}/.debug/"
|
||||
FILES_${PN}-dev += ${bindir}/net-snmp-config ${bindir}/mib2c ${bindir}/mib2c-update"
|
||||
FILES_${PN}-dev += "${bindir}/net-snmp-config ${bindir}/mib2c ${bindir}/mib2c-update"
|
||||
|
||||
CONFFILES_${PN}-server = "${sysconfdir}/snmp/snmpd.conf \
|
||||
${sysconfdir}/snmp/snmptrapd.conf"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ SRC_URI = "file://xserver-nodm \
|
|||
file://xserver-nodm.service \
|
||||
file://gplv2-license.patch \
|
||||
"
|
||||
S = ${WORKDIR}
|
||||
S = "${WORKDIR}"
|
||||
|
||||
inherit allarch
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
require ${PN}_${PV}.inc
|
||||
|
||||
DEPENDS += mysql5-native
|
||||
DEPENDS += "mysql5-native"
|
||||
|
||||
SRC_URI[md5sum] = "32e7373c16271606007374396e6742ad"
|
||||
SRC_URI[sha256sum] = "2b0737b84e7b42c9e54c9658d23bfaee1189cd5955f26b10bdb862761d0f0432"
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ FILES_${PN}-doc = "${datadir}/OpenCV/doc"
|
|||
|
||||
ALLOW_EMPTY_${PN} = "1"
|
||||
|
||||
INSANE_SKIP_python-opencv = True
|
||||
INSANE_SKIP_python-opencv = "True"
|
||||
DESCRIPTION_python-opencv = "Python bindings to opencv"
|
||||
FILES_python-opencv = "${PYTHON_SITEPACKAGES_DIR}/*"
|
||||
RDEPENDS_python-opencv = "python-core python-numpy"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user