[Gambas-devel] Wrong build order for gb.xml.rpc component

Benoît Minisini gambas at ...1...
Sun Jul 15 00:01:01 CEST 2012


Le 14/07/2012 23:28, Laurent Carlier a écrit :
> When packaging gb.xml.rpc, component was always failling to build since
> gb.xml.rpc component needs gb.xml component that is always built after
> it, because gb.xml.rpc is a pure gambas component, and it depends on
> gb.xml to be properly built.
>
> The solution is to move gb.xml component also in a subdir, so build
> order can be changed in the SUBDIR variable in the Makefile.am file
>
> src
>
> \_xml
>
> \_gb.xml
>
> \_html
>
> \_rpc
>
> \_gb.xml.rpc
>
> \_xslt
>
> Makefile.am in src dir:
>
> SUBDIR = xml @XMLHTML_DIR@ @XMLXSLT_DIR@ rpc
>
> Sample of installation log of gb.xml.rpc component:
>

Normally you should be able to define when the top directory is built by 
adding "." to the SUBDIR variable.

SUBDIR = . @XMLHTML_DIR@ @XMLXSLT_DIR@ rpc

should make the top directory built before all others.

Regards,

-- 
Benoît Minisini






More information about the Devel mailing list