diff options
author | Armin Kuster <akuster808@gmail.com> | 2019-06-23 16:41:38 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2019-06-26 15:47:47 -0700 |
commit | 3f253ddab833bfb9ed1803927b2a31fc75beb1c8 (patch) | |
tree | 1c870a67d9275d7f6a7d3c5b322851c334e4a59a | |
parent | 37dc57c998ba22d60ecbc5a425ae9f41afe8a149 (diff) | |
download | meta-security-3f253ddab833bfb9ed1803927b2a31fc75beb1c8.tar.gz |
clamav: minor recipe cleanup
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | recipes-security/clamav/clamav_0.99.4.bb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/recipes-security/clamav/clamav_0.99.4.bb b/recipes-security/clamav/clamav_0.99.4.bb index 7d8767e..7f04337 100644 --- a/recipes-security/clamav/clamav_0.99.4.bb +++ b/recipes-security/clamav/clamav_0.99.4.bb | |||
@@ -66,14 +66,12 @@ EXTRA_OECONF_class-native += "${EXTRA_OECONF_CLAMAV}" | |||
66 | EXTRA_OECONF_class-target += "--with-user=${UID} --with-group=${GID} --disable-rpath ${EXTRA_OECONF_CLAMAV}" | 66 | EXTRA_OECONF_class-target += "--with-user=${UID} --with-group=${GID} --disable-rpath ${EXTRA_OECONF_CLAMAV}" |
67 | 67 | ||
68 | do_configure () { | 68 | do_configure () { |
69 | cd ${S} | 69 | ${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} |
70 | ./configure ${CONFIGUREOPTS} ${EXTRA_OECONF} | ||
71 | install -d ${S}/clamav_db | 70 | install -d ${S}/clamav_db |
72 | } | 71 | } |
73 | 72 | ||
74 | do_configure_class-native () { | 73 | do_configure_class-native () { |
75 | cd ${S} | 74 | ${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF} |
76 | ./configure ${CONFIGUREOPTS} ${EXTRA_OECONF} | ||
77 | } | 75 | } |
78 | 76 | ||
79 | 77 | ||