diff options
| author | Yi Zhao <yi.zhao@windriver.com> | 2019-09-10 17:58:24 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2019-09-10 06:54:01 -0700 |
| commit | 540df694e4093cec392bac36b4553e8b9db6ac93 (patch) | |
| tree | 00937c78aabd9a3a57257bb6c470b8532a9b2a0c | |
| parent | 54983c1351ef12d6fa0ef1a61ed6a6b3a4087951 (diff) | |
| download | meta-openembedded-540df694e4093cec392bac36b4553e8b9db6ac93.tar.gz | |
apache-websocket: fix module path
The apache2 module's path has been changed from ${libdir} to
${libexecdir} in commit 8d4d608b4e937bb3b8e3b260bd75338c3ff7e8fd.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb b/meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb index c44efb6cd1..3cbab22c3d 100644 --- a/meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb +++ b/meta-webserver/recipes-httpd/apache-mod/apache-websocket_git.bb | |||
| @@ -25,9 +25,9 @@ EXTRA_OECONF = "APACHECTL=${STAGING_DIR_TARGET}${sbindir}/apachectl \ | |||
| 25 | LIBTOOL=${STAGING_DIR_TARGET}${bindir_crossscripts}/${HOST_SYS}-libtool" | 25 | LIBTOOL=${STAGING_DIR_TARGET}${bindir_crossscripts}/${HOST_SYS}-libtool" |
| 26 | 26 | ||
| 27 | do_install() { | 27 | do_install() { |
| 28 | install -d ${D}${libdir}/apache2/modules | 28 | install -d ${D}${libexecdir}/apache2/modules |
| 29 | install -m 755 ${B}/.libs/mod_websocket.so ${D}${libdir}/apache2/modules | 29 | install -m 755 ${B}/.libs/mod_websocket.so ${D}${libexecdir}/apache2/modules |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | FILES_${PN} += " ${libdir}/apache2/modules/* " | 32 | FILES_${PN} += " ${libexecdir}/apache2/modules/* " |
| 33 | FILES_${PN}-dbg += " ${libdir}/apache2/modules/.debug/* " | 33 | FILES_${PN}-dbg += " ${libexecdir}/apache2/modules/.debug/* " |
