All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-webserver][PATCH 0/2] meta-webserver S != B fixes
@ 2014-05-01 10:38 Paul Eggleton
  2014-05-01 10:38 ` [meta-webserver][PATCH 1/2] modphp: fix for S != B Paul Eggleton
  2014-05-01 10:38 ` [meta-webserver][PATCH 2/2] xdebug: " Paul Eggleton
  0 siblings, 2 replies; 3+ messages in thread
From: Paul Eggleton @ 2014-05-01 10:38 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit ee6f88f28566acaada77a74ce02f66fee0219ab4:

  radvd.init: fix path to radvd.conf sample (2014-04-24 21:07:47 -0400)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib paule/webserver-s-b-fixes
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/webserver-s-b-fixes

Paul Eggleton (2):
  modphp: fix for S != B
  xdebug: fix for S != B

 meta-webserver/recipes-php/modphp/modphp5.inc     | 6 +++---
 meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb | 2 ++
 2 files changed, 5 insertions(+), 3 deletions(-)

-- 
1.9.0



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [meta-webserver][PATCH 1/2] modphp: fix for S != B
  2014-05-01 10:38 [meta-webserver][PATCH 0/2] meta-webserver S != B fixes Paul Eggleton
@ 2014-05-01 10:38 ` Paul Eggleton
  2014-05-01 10:38 ` [meta-webserver][PATCH 2/2] xdebug: " Paul Eggleton
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2014-05-01 10:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta-webserver/recipes-php/modphp/modphp5.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-webserver/recipes-php/modphp/modphp5.inc b/meta-webserver/recipes-php/modphp/modphp5.inc
index d646fd1..a1d550d 100644
--- a/meta-webserver/recipes-php/modphp/modphp5.inc
+++ b/meta-webserver/recipes-php/modphp/modphp5.inc
@@ -51,8 +51,8 @@ PACKAGECONFIG[pgsql] = "--with-pgsql=${STAGING_DIR_TARGET}${exec_prefix},--witho
 acpaths = ""
 
 do_configure_prepend () {
-    rm -f build/libtool.m4 ltmain.sh aclocal.m4
-    find . -name config.m4 | xargs -n1 sed -i 's!APXS_HTTPD=.*!APXS_HTTPD=${STAGING_BINDIR_NATIVE}/httpd!'
+    rm -f ${S}/build/libtool.m4 ${S}/ltmain.sh ${S}/aclocal.m4
+    find ${S} -name config.m4 | xargs -n1 sed -i 's!APXS_HTTPD=.*!APXS_HTTPD=${STAGING_BINDIR_NATIVE}/httpd!'
 }
 
 do_configure_append() {
@@ -76,7 +76,7 @@ do_install  () {
     install -m 755 scripts/phpize ${D}${bindir}
     install -m 755 scripts/php-config ${D}${bindir}
     cat aclocal-copy/libtool.m4 aclocal-copy/lt~obsolete.m4 aclocal-copy/ltoptions.m4 \
-        aclocal-copy/ltsugar.m4 aclocal-copy/ltversion.m4 > build/libtool.m4
+        aclocal-copy/ltsugar.m4 aclocal-copy/ltversion.m4 > ${S}/build/libtool.m4
 
     oe_runmake install-build install-headers INSTALL_ROOT=${D}
 }
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-webserver][PATCH 2/2] xdebug: fix for S != B
  2014-05-01 10:38 [meta-webserver][PATCH 0/2] meta-webserver S != B fixes Paul Eggleton
  2014-05-01 10:38 ` [meta-webserver][PATCH 1/2] modphp: fix for S != B Paul Eggleton
@ 2014-05-01 10:38 ` Paul Eggleton
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2014-05-01 10:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb b/meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb
index e57783b..3c4d8e4 100644
--- a/meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb
+++ b/meta-webserver/recipes-php/xdebug/xdebug_2.2.3.bb
@@ -15,7 +15,9 @@ inherit autotools
 EXTRA_OECONF += "--enable-xdebug -with-php-config=${STAGING_BINDIR_CROSS}/php-config"
 
 do_configure() {
+    cd ${S}
     ${STAGING_BINDIR_CROSS}/phpize
+    cd ${B}
 
     # Running autoreconf as autotools_do_configure would do here
     # breaks the libtool configuration resulting in a failure later
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-05-01 10:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-01 10:38 [meta-webserver][PATCH 0/2] meta-webserver S != B fixes Paul Eggleton
2014-05-01 10:38 ` [meta-webserver][PATCH 1/2] modphp: fix for S != B Paul Eggleton
2014-05-01 10:38 ` [meta-webserver][PATCH 2/2] xdebug: " Paul Eggleton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.