You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by sh...@apache.org on 2019/06/01 02:38:21 UTC

[arrow] branch master updated: ARROW-5456: [GLib][Plasma] Fix dependency order on building document

This is an automated email from the ASF dual-hosted git repository.

shiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 8e0e2c0  ARROW-5456: [GLib][Plasma] Fix dependency order on building document
8e0e2c0 is described below

commit 8e0e2c06cbb797966f66fd2bcf9043c01006be0d
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Sat Jun 1 11:38:00 2019 +0900

    ARROW-5456: [GLib][Plasma] Fix dependency order on building document
    
    We use installed plasma-glib with allow_glib -> plasma_glib order.
    We must use building plasma-glib instead of installed plasma-glib.
    
    Author: Sutou Kouhei <ko...@clear-code.com>
    
    Closes #4425 from kou/glib-plasma-fix-dependency-order and squashes the following commits:
    
    b8053c19 <Sutou Kouhei>  Fix dependency order on building document
---
 c_glib/doc/plasma-glib/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/c_glib/doc/plasma-glib/meson.build b/c_glib/doc/plasma-glib/meson.build
index 9efc53b..490b650 100644
--- a/c_glib/doc/plasma-glib/meson.build
+++ b/c_glib/doc/plasma-glib/meson.build
@@ -53,8 +53,8 @@ source_directories = [
   join_paths(meson.build_root(), 'plasma-glib'),
 ]
 dependencies = [
-  arrow_glib,
   plasma_glib,
+  arrow_glib,
 ]
 if arrow_cuda.found()
   dependencies += [arrow_cuda_glib]