diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2019-04-20 01:56:02 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-04-27 10:13:07 -0700 |
commit | e7f13b68fe7e6b1fa595200e4ac10e05fe1b6b51 (patch) | |
tree | 765e658405d229342436b214f3f8ca03b2b2c08b | |
parent | 90558c53168b8f295eaec7ab00a3b6cb68dd1e00 (diff) | |
download | meta-openembedded-e7f13b68fe7e6b1fa595200e4ac10e05fe1b6b51.tar.gz |
apache2: Correct packaging of build and doc related files
The build related files (${datadir}/${BPN}/build and ${bindir}/apxs)
belong in the -dev package, and the manual belong in the -doc package.
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb index c6961ef9b8..2bd21f7d14 100644 --- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb +++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.39.bb | |||
@@ -184,12 +184,17 @@ CONFFILES_${PN} = "${sysconfdir}/${BPN}/httpd.conf \ | |||
184 | 184 | ||
185 | # We override here rather than append so that .so links are | 185 | # We override here rather than append so that .so links are |
186 | # included in the runtime package rather than here (-dev) | 186 | # included in the runtime package rather than here (-dev) |
187 | # and to get icons, error into the -dev package | 187 | # and to get build, icons, error into the -dev package |
188 | FILES_${PN}-dev = "${datadir}/${BPN}/icons \ | 188 | FILES_${PN}-dev = "${datadir}/${BPN}/build \ |
189 | ${datadir}/${BPN}/icons \ | ||
189 | ${datadir}/${BPN}/error \ | 190 | ${datadir}/${BPN}/error \ |
190 | ${includedir}/${BPN} \ | 191 | ${includedir}/${BPN} \ |
192 | ${bindir}/apxs \ | ||
191 | " | 193 | " |
192 | 194 | ||
195 | # Add the manual to -doc | ||
196 | FILES_${PN}-doc += " ${datadir}/${BPN}/manual" | ||
197 | |||
193 | FILES_${PN}-scripts += "${bindir}/dbmmanage" | 198 | FILES_${PN}-scripts += "${bindir}/dbmmanage" |
194 | 199 | ||
195 | # Override this too - here is the default, less datadir | 200 | # Override this too - here is the default, less datadir |