diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2016-10-11 10:30:45 -0400 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2016-10-11 20:48:41 -0700 |
commit | 5b4ee1ee2cf1360fa094030cdf5e733c146184df (patch) | |
tree | 644197e876f3d5ab6f55d67a72184a895c504a3e | |
parent | 793d60e5fa513b9f2f55f684470120d9a4b26103 (diff) | |
download | meta-security-5b4ee1ee2cf1360fa094030cdf5e733c146184df.tar.gz |
clamav: fixup improper quoting
Commit 217e06badb146539122732ab0eb27fd17cce09e5 [clamav: fix gcc 6.x
build failure.] fixed a typo in "PACKAGECONFIG" (was missing the 'G')
but unfortunately the PACKAGECONFIG string was incorrectly formed due
to mismatched quotes. This caused a parsing error:
ERROR: Unable to parse .../meta-security/recipes-security/clamav/clamav_0.99.2.bb
...
Removed the unneeded quotes to fix the parsing issue.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | recipes-security/clamav/clamav_0.99.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-security/clamav/clamav_0.99.2.bb b/recipes-security/clamav/clamav_0.99.2.bb index a2bab6d..3e5f36c 100644 --- a/recipes-security/clamav/clamav_0.99.2.bb +++ b/recipes-security/clamav/clamav_0.99.2.bb | |||
@@ -54,7 +54,7 @@ PACKAGECONFIG[openssl] = "--with-openssl=${STAGING_DIR_HOST}/usr, --without-open | |||
54 | PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_DIR_HOST}/usr, --without-zlib, zlib, " | 54 | PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_DIR_HOST}/usr, --without-zlib, zlib, " |
55 | PACKAGECONFIG[bz2] = "--with-libbz2-prefix=${STAGING_LIBDIR}/.., --without-libbz2-prefix, " | 55 | PACKAGECONFIG[bz2] = "--with-libbz2-prefix=${STAGING_LIBDIR}/.., --without-libbz2-prefix, " |
56 | PACKAGECONFIG[ncurses] = "--with-libncurses-prefix=${STAGING_LIBDIR}/.., --without-libncurses-prefix, ncurses, " | 56 | PACKAGECONFIG[ncurses] = "--with-libncurses-prefix=${STAGING_LIBDIR}/.., --without-libncurses-prefix, ncurses, " |
57 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/', '--without-systemdsystemunitdir', " | 57 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/, --without-systemdsystemunitdir, " |
58 | 58 | ||
59 | EXTRA_OECONF += " --with-user=${UID} --with-group=${GID} \ | 59 | EXTRA_OECONF += " --with-user=${UID} --with-group=${GID} \ |
60 | --without-libcheck-prefix --disable-unrar \ | 60 | --without-libcheck-prefix --disable-unrar \ |