diff options
author | Ioan-Adrian Ratiu <adrian.ratiu@ni.com> | 2016-03-17 17:54:34 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-03-25 11:26:58 +0100 |
commit | b6afa6acd0c9357f31588cf544f196d502c19405 (patch) | |
tree | 238e6d0e982971a618d2695cebf059df1ea4310f /meta-webserver/recipes-httpd | |
parent | 916da56c121687368557836883340025f0deae92 (diff) | |
download | meta-openembedded-b6afa6acd0c9357f31588cf544f196d502c19405.tar.gz |
apache2: stage apachectl
Some apache module recipes like the newly introduced apache-websocket
also need apachectl at build in the sysroot besides apxs.
Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-webserver/recipes-httpd')
-rw-r--r-- | meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb index 597afe6db..53d0564a4 100644 --- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb +++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.18.bb | |||
@@ -113,6 +113,8 @@ SYSROOT_PREPROCESS_FUNCS += "apache_sysroot_preprocess" | |||
113 | apache_sysroot_preprocess () { | 113 | apache_sysroot_preprocess () { |
114 | install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/ | 114 | install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/ |
115 | install -m 755 ${D}${bindir}/apxs ${SYSROOT_DESTDIR}${bindir_crossscripts}/ | 115 | install -m 755 ${D}${bindir}/apxs ${SYSROOT_DESTDIR}${bindir_crossscripts}/ |
116 | install -d ${SYSROOT_DESTDIR}${sbindir}/ | ||
117 | install -m 755 ${D}${sbindir}/apachectl ${SYSROOT_DESTDIR}${sbindir}/ | ||
116 | sed -i 's!my $installbuilddir = .*!my $installbuilddir = "${STAGING_DIR_HOST}/${datadir}/${BPN}/build";!' ${SYSROOT_DESTDIR}${bindir_crossscripts}/apxs | 118 | sed -i 's!my $installbuilddir = .*!my $installbuilddir = "${STAGING_DIR_HOST}/${datadir}/${BPN}/build";!' ${SYSROOT_DESTDIR}${bindir_crossscripts}/apxs |
117 | sed -i 's!my $libtool = .*!my $libtool = "${STAGING_BINDIR_CROSS}/${TARGET_PREFIX}libtool";!' ${SYSROOT_DESTDIR}${bindir_crossscripts}/apxs | 119 | sed -i 's!my $libtool = .*!my $libtool = "${STAGING_BINDIR_CROSS}/${TARGET_PREFIX}libtool";!' ${SYSROOT_DESTDIR}${bindir_crossscripts}/apxs |
118 | 120 | ||