Nested variables in cfquery

Hi,
I have a query which is called "myQuery" and I want to have the value of a field in myQuery like below:
myValue= #myQuery.FirstName#
But the name of the field is in another variable: #myfield#. So, I want :
myValue= #myQuery.#myfield##
But this statement cause an error as it has nested variables.
Could any body help me to solve my problem?

It's mentioned - in passing - here.
There's no mention of this, or cross reference to this, or any suggestion it's relevant at all on the <cfquery> page, which is... oh, I dunno... it's predictable of livedocs, really.
Adam

Similar Messages

  • Nested variable help

    Hi,
    I have looked around and been unable to find an answer, if one already exists I apologize in advance.
    I have a menu built in powershell for use from the CLI, but need help in properly nesting variables and then reading them back.
    I create a variable to store systems from site1, systems from site2, systems from site3, etc.
    ##Singapore
    $global:mySinStorage1 = "system1_1"
    $global:mySinStorage = "system1_2"
    $global:AllSin = $global:mySinStorage1,$global:mySinStorage
    ##Budapest
    $global:myBudStorage = "system2_1"
    $global:myBudStorage = "system2_2"
    $global:AllBud = $global:myBudStorage1,$global:myStorage2
    Calling $global:AllBud or $global:AllSin works without issue, however when trying to build a grouping for easier updating, I am missing something(probably simple.
    ##All EMEA
    $global:myEMEAStorage = {$global:AllBud,$global:AllSin}
    This seems to create a variable with two strings made of each original variable, which as I understand is to be expected.  Is there an easy way to rebuild this variable with each entry as a separate entity so processing and parsing can read them?  
    Currently I have these larger entries with each system specified, this has lead to variables with 120+ hand entered entries.  Needless to say this very easily has lead to misses/errors.
    Thank you for any help,
    Scott

    Here is how to use variables in PowerShell or any other obect system.
    $cityhash=@{
    City=''
    Storage1=$null
    Storage2=$null
    $cities=@()
    ##Singapore
    $cityhash.City='Singapore'
    $cityhash.Storage1 = "system1_1"
    $cityhash.Storage2 = "system1_2"
    $cities+=[pscustomobject]$cityhash
    ##Budapest
    $cityhash.City='Budapest'
    $cityhash.Storage1 = "system1_1"
    $cityhash.Storage2 = "system1_2"
    $cities+=[pscustomobject]$cityhash
    # get a city
    $p=$cities | ?{$_.City -eq 'Budapest'}
    $p.Storage1
    ¯\_(ツ)_/¯

  • Nesting variables

    I have a webservice designed to create various XML files.
    My Controller adds all the objects to the model, along with a list of all the map labels:
    Example:
    String [] Responses = {"provider", "quote"};
    model.put("Responses", Responses);
    model.put("provider", "InsureCo");
    model.put("quote", 255.55);How can I then dynamically create an xml file such as:
    <quoteResponse>
    <provider>InsureCo</provider>
    <quote>255.55</quote>
    <quoteResponse>
    I can print the <xxx> </xxx> parts fine but not the values.
    <quoteResponse>
         <c:forEach var="label" items="${model.Responses}">
              <<c:out value="${label}"/>>
                   <c:out value="${model.label}"/> << What Goes Here??
              </<c:out value="${label}"/>>
         </c:forEach>
    </quoteResponse><c:out value="${model.label}"/> I have tried all sorts of combinations for this part, Is it possible to embed the label variable here?

    <c:out value="${model[label]}"/>I think this.

  • Nested variable names?

    All,
    Let me start with an example:
    &lt;cfset main = &quot;a&quot;&gt;
    &lt;cfset aList = &quot;1,2,3&quot;&gt;
    Now what I want to do is output the string
    &quot;1,2,3&quot; (the contents of aList) to the screen,
    but using the variable in &quot;main&quot; ... In my head
    it looks like this:
    &lt;cfoutput&gt; #&quot;#main#List&quot;#
    &lt;/cfoutput&gt;
    But that does not work. So in other words, I want the
    variable &quot;main&quot; to resolve as
    &quot;a&quot;, then &quot;aList&quot; to resolve as
    &quot;1,2,3&quot;. Can anyone point me in the right
    direction?
    Thanks!

    istock1 wrote:
    > All, Let me start with an example: <cfset main =
    'a'> <cfset aList = '1,2,3'>
    > Now what I want to do is output the string '1,2,3' (the
    contents of aList) to
    > the screen, but using the variable in 'main' ... In my
    head it looks like this:
    > <cfoutput> #'#main#List'# </cfoutput> But
    that does not work. So in other
    > words, I want the variable 'main' to resolve as 'a',
    then 'aList' to resolve as
    > '1,2,3'. Can anyone point me in the right direction?
    Thanks!
    >
    Array notation, learn it, love it, it is very powerful in
    ColdFusion.
    <cfoutput>#variables[a & 'List']#</cfoutput>
    This works with the variables scope, url, session,
    application, record
    sets, just about any variable type in ColdFusion.

  • Java Code in BPEL 2.0 to set nested variable

    Hi,
    Using BPEL 2.0 Java Embedding I want to copy the a value to the result element under outputVariable payload.
    I am using following code
    <extensionActivity>
    <bpelx:exec name="Java_Embedding" language="java">
    <![CDATA[try{     
             BPMWorkspaceServices WorkspaceServices = new BPMWorkspaceServices();    
             XMLElement instId = (XMLElement) getVariableData("inputVariable","payload");    
             String url = WorkspaceServices.getTaskURL("weblogic.jndi.WLInitialContextFactory", "t3://host:port", "abcde", "abcde",instId.getTextContent());    
             XMLElement elem = (XMLElement) getVariableData("outputVariable","payload");        
             elem.setTextContent(url);    
            } catch (Exception e) {     
    System.out.println("**************Error Testing Test URL **************");
    e.printStackTrace();
    }]]>
    </bpelx:exec>
    </extensionActivity>
    I am getting the folowing output payload:-
    <outputVariable>
    <part name="payload">
    <processResponse>http://abcde.com</processResponse>
    </part>
    </outputVariable>
    However I wanted the thing like
    <outputVariable>
    <part name="payload">
    <processResponse>
    <result>http://abcde.com</result>
    </processResponse>
    </part>
    </outputVariable>
    What code should I write in Java Embedding in BPEL 2.0?
    Please help!
    Regards,
    Sam

    Hello Rolando Carrasco,
    Thank for responding my question. I figure out the issue. It is because we need to import the java API's what we are using in the java embedding.
    Thank you,
    Raj

  • Problem with variable in scheduled job

    I'm trying to get the following scheduled job to run:
    switch(config)# scheduler job name backup_job
    switch(config-job)# cli var name timestamp $(TIMESTAMP) ; copy running-config bootflash:/$(SWITCHNAME)-cfg.$(timestamp) ; copy bootflash:/$(SWITCHNAME)-cfg.$(timestamp) tftp://1.2.3.4/
    switch(config-job)# exit
    switch(config)# scheduler schedule name backup_timetable
    switch(config-schedule)# job name backup_job
    switch(config-schedule)# time daily 1:23
    switch(config-schedule)# exit
    switch(config)# exit
    This job is taken directly from multiple Cisco MDS and Nexus documents. From what I can tell, the purpose of this job is to save the running configuration to a file on bootflash with date & time in the file name and then to copy the file from bootflash to tftp server.
    I can create the job and schedule successfully:
    switch(config)#show scheduler job name backup_job
    Job Name: backup_job
    cli var name timestamp $(TIMESTAMP)
    copy running-config bootflash:/$(SWITCHNAME)-cfg.$(timestamp)
    copy bootflash:/$(SWITCHNAME)-cfg.$(timestamp) tftp://1.2.3.4
    ==============================================================================
    switch(config)#show scheduler schedule name backup_timetable
    Schedule Name       : backup_timetable
    User Name           : admin
    Schedule Type       : Run every day at 10 Hrs 48 Mins
    Last Execution Time : Tue Mar  6 10:48:00 2012
    Last Completion Time: Tue Mar  6 10:48:00 2012
    Execution count     : 1
         Job Name            Last Execution Status
    backup_job                        Success (0)
    ==============================================================================
    The scheduled job runs successfully but the files that are created have the variable $(TIMESTAMP) in the file name instead of the actual date and time e.g. switch-cfg.$(TIMESTAMP)
    The logfile contains the following:
    Schedule Name  : backup_timetable                  User Name : admin
    Completion time: Tue Mar  6 10:59:26 2012
    --------------------------------- Job Output ---------------------------------
    `cli var name timestamp $(TIMESTAMP)`
    `copy running-config bootflash:/PEN-9509-2-cfg.$(TIMESTAMP) `
    Copy complete, now saving to disk (please wait)...
    `copy bootflash:/PEN-9509-2-cfg.$(TIMESTAMP) tftp://1.2.3.4 `
    Trying to connect to tftp server......
    Connection to server Established. Copying Started.....
    It looks to me that the $(timestamp) variable is being created successfully and is being replaced with the $(TIMESTAMP) variable but this is not being replaced with the actual date and time.
    The thing I don't get is that this looks to me that we're trying to nest variables and the same Cisco documents from which I get this configuration also state that nested variables are not allowed.
    I have tried this on different hardware - MDS9500, MDS9100, Nexus 5000, Nexus 7000 and different software - SAN-OS 3.3, NX-OS 4.1, NX-OS 5.2 but cannot get it to work. I have also tried to put the commands in a script and run with the run-script command but it still does not work.
    There is probably another method to achieve what this configuration is trying to achieve (and I would like to know if there is) but I want to know if this particular configuration will work.
    Can anyone tell me if they have got this working or can see what I'm doing wrong or can try running this in a lab please?

    I managed to get this resolved with a bit of a workaround. If I put the copy commands in a script and pass the variable to the run-script command as part of the scheduled job then it works ok. Trying to create the variable within the script (or as a separate scheduled job command) still doesn’t work.
    So, creating a script file (script) as follows:
    copy running-config bootflash:/$(SWITCHNAME)-cfg.$(timestamp)
    copy bootflash:/$(SWITCHNAME)-cfg.$(timestamp) tftp://1.2.3.4
    and creating a scheduled job with the following command:
    run-script bootflash:script timestamp=”$(TIMESTAMP)”
    achieves the desired result.

  • Well to run a cfquery I must include a "password" attribute, etc except I have a local server ? yes / no

    I read ALL the textbook
    MACROMEDIA CF, 2002 course.com
    Well to run a <cfquery> I must include a "password" attribute, etc
    except I have a local server ? yes / no
    May use/include a file dbinfo.cfm with all my passwords etc , and use
    these passwords as variables in <cfquery>,...etc ? this is more secure ?
    I must include vars in <cfscript> tag OR many <cfset> tags ?
    If I had
    <cfscript>
    password='gf56SDRPO999';
    </cfscript>
    HOW TO INCLUDE THIS VAR IN  <cfquery password=#password# ...> this is correct ?

    Your question is unclear to me, but if you just want to verify your syntax is legal, then YES.  You can easily set a value in a variable with <cfscript> and then later use that variable in a <cftag...> like you showed.
    But I would argue there is little additional security in using passwords in code like this between setting the password and using it directly in the tag.  There may be reusability and maintainability advantages, but little advantage to security.

  • Nested methods

    I'm missing this programming techinque very much. I find 3 reasons to use nested methods: hierarchic code is easier to understand, no need to pass local variables as paraters and resulting speedup.
    Here is an example from one of the replays on the topic:
    class Foo {
         int num;
         void foo() {
              num = 3;
              class MethodClass {
                   void printHI() { System.out.println("HI"); }
              MethodClass.printHI();
              MethodClass.printHI();
    }The author of this example stated that it's very un-OO, meantime Java doesn't support nested methods.
    Is it really bad OO practise? I suppose that having nested methods makes reflection more complex, in place of class methods we would have hierarchy of methods. In fact Java classes should already have hirearcy of nested variables (classes). Why not to make the same thing for methods? I'm not sure wheter it's correct Dephi's RTTI and reflection but methods nesting doesn't harm to RTTI.
    I see that creating an instance of class just for calling one of its methods is not very effective and slows down the execution even more than passing local variables as parameters in the case of non-nested functions.

    Does this code looks like algorithm?
    method1() {
         do(1);
         do(2);
         do(3);
         do(1);
         do(2);
         do(3);
    }When do you define new procedure? IMO a procedure is a snippet of reusable code. Thus I would define procedure do123() {
         do(1);
         do(2);
         do(3);
    }and would write
    method1() {
         do123();
         do123();
    }Imagine that this sequence (do 1, do2, do3, do1, do2, do3) is not used only by method1. In this case procedure do123 is (re)used only by method1 scope. I can't find any reason to define this procedure in the object scope, even specifying it as private. do123 should be defined in the scope of method1. Even worse, when you want to use method1 local variables from do123.
    proposed.
    advantages:
         1) the procedure do123() is defined and
            used only at metod1 scope
         2) no need to pass parameter a into the procedure
            do123
    void method1() {
         int a = x;
         void do123() {
              use(a);
         do123();
    /*Java implementation 1.
    disadvantages:
         1) the procedure do123() is used only from method1 scope
            while it is defined at object scope
         2) we need to pass parameter a into the procedure do123 that
            is verbose too and sows down run time
    private void do123(int a) {
         use(a);
    void method1() {
         int a = x;
         do123(a);
    /*Java implementation 2.
    disadvantages:
         1) the procedure do123() is used only from the scope of
            method1 but is defined at the object scope
         2) we need to define variable a at the object scope while it
            is used only in method1
    private int a = x;
    private void do123() {
         use(a);
    void method1() {
         do123();
    }They told that private methods are inlined, but it is not possible for recursive calls and it is not true for normal privates, because there is a special bytecode to invoke private methods. Because methods are not inlined all parameters must be copied into new stack frame.
    Objects can incapsulate data and methods, methods incapsulate only local variables. If incapsulation is a key OOP notion then why we can't incapsulate methods onto methods?
    I'm trying to tell that nested methods is an extremly powerful feature in describing algoritms. Using local methods would lead to less verbose, easier to maintain and faster code.

  • PDF binary variable won't save in Oracle blob

    I am reading in a small, legitimate PDF as a binary variable and them immediately saving that variable into a blob. But the blob doesn't store the data.
    <cffile action="readbinary" file="C:\Test_Files\test.pdf" variable="testdoc">
    now shows isbinary(testdoc) = YES
    In fact, I can output to the screen using cfcontent, and it displays fine.
    But if I try to save the testdoc variable to an Oracle blob, CF seems to think it is trying to insert an empty variable.
    <cfquery name="ins" datasource="#request.a_datasource#">
    INSERT
    INTO PROD_WCT.T_DOCS (
    PDF_BLOB
    VALUES (
    <cfqueryparam value="#testdoc#" cfsqltype="CF_SQL_BLOB">
    Now if I retrieve that row (query name=”get_pdf”) and check the value, it appears empty:
    now shows isbinary(get_pdf.pdf_blob) = NO
    Nothing is done in betweent the cffile and the insert. Any ideas?

    Just an update here to note that this problem has not yet been resolved.
    This could be in incompatibility between Oracle 10g BLOBs and Coldfusion 8.
    To review, my BLOB setting in CFADMIN is enabled. To make this as simple and possible, I created a PDF from the words "Test text," so the PDF document can't get much smaller. The PDF does save to the BLOB, because in TOAD I can save the BLOB contents to a file and view it as a PDF just fine. It's when I retrieve the record in CF8 where the trouble arises. Coldfusion 8 doesn't get anything from the BLOB. It has a zero length, and isbinary = NO. We are using Oracle 10g. And using CF8. My understanding is that an Oracle blob uses pointers to locate the blob data in an area external to the database. Apparently, Coldfusion cannot retrieve the data. The process worked for the first few records when retrieving a blob and displaying it with cfcontent, but after a few records it can no longer retrieve the subsequent blob records. It just abruptly fails at that point. But again, the PDF binary data is there in TOAD.
    Could this be a bug or incompatibility with Oracle 10g? We are a state government, and it sure would help if the Adobe people could give come help here.
    Thanks in advance for any thoughts.

  • Ejecutar archivo .sql en  CFQUERY

    Buenos dias no se si alguien sepa si se puede ejecurar el comado:
    source archivo.sql dentro de un CFQuery y si alquien sabe que por favor me indique

    <cffile action = "read" file = "c:\temp\archivo.sql"  variable = "sqlString">
    <cfquery name = "result" dataSource = "myDSN">
        #sqlString#   
    </cfquery>

  • Accessing Deeply Nested Value

    Thread followed on from [here|Access to SRM Variable;
    Hi Folks,
    Following on from a thread I started in the SRM forum, I now have access to a very deeply nested variable see [this|http://img59.imageshack.us/i/variable.png/] image for path.
    How can I change the value in this variable using OO code?
    All help is much appreciate,
    Colm

    Uwe,
    I did not have access to that particular instance but I was able to use your help to find the values that I needed to change. I needed to create a post-exit enhancement on my WDDOINIT method and implement the following code. Thank you very much.
      DATA: lo_wd_child_node      TYPE REF TO if_wd_context_node,
            lo_root_node          TYPE REF TO if_wd_context_node,
            lo_context            TYPE REF TO if_wd_context.
      lo_context      = wd_context->get_context( ).
      lo_root_node    = lo_context->root_node.
      lo_wd_child_node = lo_root_node->get_child_node( name = 'ACTIVE' ).
      lo_wd_child_node->set_attribute( EXPORTING name  = 'ACTIVE_LOC'
                                                 value = '02' ).
    Edited by: Colm Gavin on Mar 9, 2011 12:46 PM

  • Query output into cfmail

    I need to send an individual email to about 100 names fetched
    from an Access 2003 database. I am fetching the distinct emails
    from the database and getting each Project owned by each distinct
    email address.
    I created the correct output on a test web page where the
    query will list every distinct email address with each email
    address having their own Project Title listing. Now the question is
    how do I use my output to send an individual email to each of the
    distinct email addresses I got in my query??
    For example someone with the email Address of
    [email protected] would get one email with his Project Title
    listings that could be 3 or 4 titles. The next distinct email
    address of [email protected] will get his own email with his
    Project title listings.
    Here is my attempt but the #userEmail# has everyones email
    address.
    <cfoutput query = "theQuery" group = "userEmail">
    <cfmail to: #userEmail# subject: Project Listing
    <cfoutput>Project Listing:
    #ProjectTitle#</cfoutput>
    <cfmail>
    </cfoutput>
    Please help.

    Jazzy has the correct answer. And if your project listings
    reside in seperate tables, you need to run a seperate query within
    the loop BUT outside of the cfmail in order to retrieve those. So
    that would then be...
    <cfquery name="rs_read" datasource="xxx" >
    SELECT *
    FROM #session.sometable#
    WHERE whateverid = '#variables.whateverid#';
    </cfquery>
    <cfloop index="loopcount" from="1"
    to='#rs_read.RecordCount#' step="1">
    <cfquery name="rs_projects" datasource="xxx" >
    SELECT projects
    FROM #session.sometable#
    WHERE email = '#rs_read.email#';
    </cfquery>
    <cfset variables.proj = ''>
    <cfoutput query="rs_projects">
    <cfset variables.proj = variables.proj & ' ' &
    rs_projects.projects>
    </cfoutput>
    <cfmail from="[email protected]" to="#rs_read.email#"
    subject="#rs_projects.whatever#">
    bla bla #rs_read.anyvariable#
    PROJECTS: #variables.proj#
    </cfmail>
    </cfloop>
    REMEMBER: You can not nest outputs in outputs, that's why you
    can not run the query output inside CFMAIL because CF regards
    cfmail as an output routine.

  • Trouble installing ZFS in archlinux kernel 3.6.3-1-ARCH

    I've been trying to install ZFS on my system, and i can't get past a building error for SPL, here is my install output:
    ==> Downloading zfs PKGBUILD from AUR...
    x zfs_preempt.patch
    x zfs.install
    x PKGBUILD
    Comment by: modular on Wed, 24 Oct 2012 03:09:04 +0000
    @demizer
    I don't/won't run ZFS as a root file system. I'm getting the following build error:
    http://pastebin.com/ZcWiaViK
    Comment by: demizer on Wed, 24 Oct 2012 04:11:54 +0000
    @modular, You're trying to build with the 3.6.2 kernel. The current version (rc11) does not work with the 3.6.2 kernel. If you want to use it, you will have to downgrade to the 3.5.6 kernel (linux and linux-headers). https://wiki.archlinux.org/index.php/Downgrading_Packages
    Thanks!
    Comment by: MilanKnizek on Wed, 24 Oct 2012 08:07:19 +0000
    @demizer: there still seemed to be a problem during upgrading - zfs/spl requires kernel of certain version (hard-coded) and this blocks the upgrade (the old installed zfs/spl requires the old kernel and kernel can't be upgraded w/o breaking dependency of zfs/spl and therefore build of the new zfs/spl fails, too).
    So far, I have had to remove zpl/spl, upgrade kernel, rebuild + install spl/zfs and manually run depmod against the new kernel (i.e. the postinst: depmod -a does not work until next reboot) and only then reboot to load the new kernel zfs modules successfully.
    That is quite clumsy and error-prone - I hope it will be resolved via DMKS.
    Comment by: srf21c on Sun, 28 Oct 2012 04:00:31 +0000
    All, if you're suffering zfs kernel upgrade pain fatigue, seriously consider going with the LTS (long term support) kernel. I just successfully built zfs on a system that I switched to the linux-lts 3.0.48-1. All you have to do is install the linux-lts and linux-lts-headers packages, reboot to the lts kernel, and change any instances of depends= or makedepends= lines in the package build file like so:
    Before:
    depends=('linux=3.5' "spl=${pkgver}" "zfs-utils=${pkgver}")
    makedepends=('linux-headers=3.5')
    After:
    depends=('linux-lts=3.0' "spl=${pkgver}" "zfs-utils=${pkgver}")
    makedepends=('linux-lts-headers=3.0')
    Then build and install each package in this order: spl-utils,spl,zfs-utils,zfs.
    Worked like a champ for me.
    Comment by: stoone on Mon, 29 Oct 2012 12:09:29 +0000
    If you keep the linux, and linux-headers packages while using the LTS you don't need to modify the PKGBUILDs. Because the checks will pass but it will build the packages to your current runnning kernel.
    Comment by: demizer on Mon, 29 Oct 2012 15:56:27 +0000
    Hey everybody, just a quick update. The new build tool I have been working on is now in master, https://github.com/demizer/aur-zfs. With it you can build and package two different groups of packages one for aur and one for split. Again, building the split packages is more efficient. I still have a lot of work to be done, but it is progressing. I will be adding git, dkms, and lts packages after I setup my repo. My next step is to add unofficial repository support to my build tool so I can easily setup a repo with precompiled binaries. I will be hosting the repo on my website at http://demizerone.com/archzfs. Initially it will only be for 64bit code since the ZOL FAQ states that ZOL is very unstable with 32bit code due to memory management differences in Solaris and Linux. I will notify you all in the future when that is ready to go.
    @MilanKnizek, Yes updating is a pain. ZFS itself is hard-coded to linux versions at build time. The ZFS build tool puts the modules in "/usr/lib/modules/3.5.6-1-ARCH/addon/zfs/", and this the primary reason it has to be rebuilt each upgrade, even minor point releases. Nvidia for example puts their module in "/usr/lib/modules/extramodules-3.5-ARCH/", so minor point releases are still good and the nvidia package doesn't need to be re-installed. A possible reason for ZOL to be hard-coded like this because ZOL is still technically very beta code.
    I do have a question for the community, does anyone use ZFS on a 32bit system?
    Thanks!
    First Submitted: Thu, 23 Sep 2010 08:50:51 +0000
    zfs 0.6.0_rc11-2
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> zfs dependencies:
    - linux>=3.5 (already installed)
    - linux-headers>=3.5 (already installed)
    - spl>=0.6.0_rc11 (building from AUR)
    - zfs-utils>=0.6.0_rc11 (building from AUR)
    ==> Edit zfs.install ? [Y/n] ("A" to abort)
    ==> ---------------------------------------
    n
    ==> Continue building zfs ? [Y/n]
    ==> -----------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for zfs:
    ==> Downloading spl PKGBUILD from AUR...
    x spl.install
    x PKGBUILD
    Comment by: timemaster on Mon, 15 Oct 2012 22:42:32 +0000
    I am not able to compile this package after the upgrade to the 3.6 kernel. Anyone else ? any idea?
    Comment by: mikers on Mon, 15 Oct 2012 23:34:17 +0000
    rc11 doesn't support Linux 3.6; there are some patches on GitHub that might apply against it (I've not done it myself), see:
    https://github.com/zfsonlinux/spl/pull/179
    https://github.com/zfsonlinux/zfs/pull/1039
    Otherwise downgrade to Linux 3.5.x or linux-lts and wait for rc12.
    Comment by: timemaster on Mon, 15 Oct 2012 23:54:03 +0000
    Yes, I saw that too late.
    https://github.com/zfsonlinux/zfs/commit/ee7913b644a2c812a249046f56eed39d1977d706
    Comment by: demizer on Tue, 16 Oct 2012 07:00:16 +0000
    Looks like the patches have been merged, now we wait for rc12.
    Comment by: vroomanj on Fri, 26 Oct 2012 17:07:19 +0000
    @demizer: 3.6 support is available in the master builds, which are stable but not officially released yet. Can't the build be updated to use the master tars?
    https://github.com/zfsonlinux/spl/tarball/master
    https://github.com/zfsonlinux/zfs/tarball/master
    Comment by: demizer on Fri, 26 Oct 2012 17:51:42 +0000
    @vroomanj, I plan on working on the git packages this weekend. All I have to figure out if it is going to be based on an actual git clone or if its just going to be the download links you provided. They are pretty much the same, but i'm not really clear what the Arch Package Guidelines say about this yet. Also, I don't think the current packages in AUR now should be based off of git master. They should be based off of the ZOL stable releases (rc10, rc11, ...). That's why I am making git packages so people can use them if they want to upgrade to the latest kernel and the stable release hasn't been made yet. As is the case currently.
    First Submitted: Sat, 26 Apr 2008 14:34:31 +0000
    spl 0.6.0_rc11-2
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> spl dependencies:
    - linux>=3.5 (already installed)
    - spl-utils>=0.6.0_rc11 (already installed)
    - linux-headers>=3.5 (already installed)
    ==> Edit spl.install ? [Y/n] ("A" to abort)
    ==> ---------------------------------------
    ==> n
    ==> Continue building spl ? [Y/n]
    ==> -----------------------------
    ==>
    ==> Building and installing package
    ==> Making package: spl 0.6.0_rc11-2 (Tue Oct 30 11:34:13 CET 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Downloading spl-0.6.0-rc11.tar.gz...
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    0 178 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
    100 136 100 136 0 0 154 0 --:--:-- --:--:-- --:--:-- 293
    100 508k 100 508k 0 0 357k 0 0:00:01 0:00:01 --:--:-- 1245k
    ==> Validating source files with md5sums...
    spl-0.6.0-rc11.tar.gz ... Passed
    ==> Extracting Sources...
    -> Extracting spl-0.6.0-rc11.tar.gz with bsdtar
    ==> Starting build()...
    configure.ac:34: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
    configure.ac:34: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation
    checking metadata... yes
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking target system type... i686-pc-linux-gnu
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking whether make supports nested variables... yes
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking how to print strings... printf
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop
    checking how to convert i686-pc-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking spl license... GPL
    checking linux distribution... arch
    checking default package type... arch
    checking whether rpm is available... no
    checking whether rpmbuild is available... no
    checking whether dpkg is available... no
    checking whether dpkg-buildpackage is available... no
    checking whether alien is available... no
    checking whether pacman is available... yes (4.0.3)
    checking whether makepkg is available... yes (4.0.3)
    checking spl config... kernel
    checking kernel source directory... /usr/src/linux-3.6.3-1-ARCH
    checking kernel build directory... /usr/src/linux-3.6.3-1-ARCH
    checking kernel source version... 3.6.3-1-ARCH
    checking kernel file name for module symbols... Module.symvers
    checking whether debugging is enabled... no
    checking whether basic debug logging is enabled... yes
    checking whether basic kmem accounting is enabled... yes
    checking whether detailed kmem tracking is enabled... no
    checking whether modules can be built... yes
    checking whether atomic types use spinlocks... no
    checking whether kernel defines atomic64_t... yes
    checking whether kernel defines atomic64_cmpxchg... no
    checking whether kernel defines atomic64_xchg... yes
    checking whether kernel defines uintptr_t... yes
    checking whether INIT_WORK wants 3 args... no
    checking whether register_sysctl_table() wants 2 args... no
    checking whether set_shrinker() available... no
    checking whether shrinker callback wants 3 args... no
    checking whether struct path used in struct nameidata... yes
    checking whether task_curr() is available... no
    checking whether unnumbered sysctl support exists... no
    checking whether struct ctl_table has ctl_name... no
    checking whether fls64() is available... yes
    checking whether device_create() is available... yes
    checking whether device_create() wants 5 args... yes
    checking whether class_device_create() is available... no
    checking whether set_normalized_timespec() is available as export... yes
    checking whether set_normalized_timespec() is an inline... yes
    checking whether timespec_sub() is available... yes
    checking whether init_utsname() is available... yes
    checking whether header linux/fdtable.h exists... yes
    checking whether files_fdtable() is available... yes
    checking whether __clear_close_on_exec() is available... yes
    checking whether header linux/uaccess.h exists... yes
    checking whether kmalloc_node() is available... yes
    checking whether monotonic_clock() is available... no
    checking whether struct inode has i_mutex... yes
    checking whether struct mutex has owner... yes
    checking whether struct mutex owner is a task_struct... yes
    checking whether mutex_lock_nested() is available... yes
    checking whether on_each_cpu() wants 3 args... yes
    checking whether kallsyms_lookup_name() is available... yes
    checking whether get_vmalloc_info() is available... no
    checking whether symbol *_pgdat exist... yes
    checking whether first_online_pgdat() is available... no
    checking whether next_online_pgdat() is available... no
    checking whether next_zone() is available... no
    checking whether pgdat_list is available... no
    checking whether global_page_state() is available... yes
    checking whether page state NR_FREE_PAGES is available... yes
    checking whether page state NR_INACTIVE is available... no
    checking whether page state NR_INACTIVE_ANON is available... yes
    checking whether page state NR_INACTIVE_FILE is available... yes
    checking whether page state NR_ACTIVE is available... no
    checking whether page state NR_ACTIVE_ANON is available... yes
    checking whether page state NR_ACTIVE_FILE is available... yes
    checking whether symbol get_zone_counts is needed... no
    checking whether user_path_dir() is available... yes
    checking whether set_fs_pwd() is available... no
    checking whether set_fs_pwd() wants 2 args... yes
    checking whether vfs_unlink() wants 2 args... yes
    checking whether vfs_rename() wants 4 args... yes
    checking whether vfs_fsync() is available... yes
    checking whether vfs_fsync() wants 2 args... yes
    checking whether struct fs_struct uses spinlock_t... yes
    checking whether struct cred exists... yes
    checking whether groups_search() is available... no
    checking whether __put_task_struct() is available... yes
    checking whether proc_handler() wants 5 args... yes
    checking whether kvasprintf() is available... yes
    checking whether rwsem_is_locked() acquires sem->wait_lock... no
    checking whether invalidate_inodes() is available... no
    checking whether invalidate_inodes_check() is available... no
    checking whether invalidate_inodes() wants 2 args... yes
    checking whether shrink_dcache_memory() is available... no
    checking whether shrink_icache_memory() is available... no
    checking whether symbol kern_path_parent exists in header... no
    checking whether kern_path_parent() is available... no
    checking whether zlib_deflate_workspacesize() wants 2 args... yes
    checking whether struct shrink_control exists... yes
    checking whether struct rw_semaphore member wait_lock is raw... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating lib/Makefile
    config.status: creating cmd/Makefile
    config.status: creating module/Makefile
    config.status: creating module/spl/Makefile
    config.status: creating module/splat/Makefile
    config.status: creating include/Makefile
    config.status: creating scripts/Makefile
    config.status: creating spl.spec
    config.status: creating spl-modules.spec
    config.status: creating PKGBUILD-spl
    config.status: creating PKGBUILD-spl-modules
    config.status: creating spl.release
    config.status: creating dkms.conf
    config.status: creating spl_config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    make all-recursive
    make[1]: Entering directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11'
    Making all in module
    make[2]: Entering directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module'
    make -C /usr/src/linux-3.6.3-1-ARCH SUBDIRS=`pwd` CONFIG_SPL=m modules
    make[3]: Entering directory `/usr/src/linux-3.6.3-1-ARCH'
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-debug.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-proc.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-kmem.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-thread.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-taskq.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-rwlock.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.o
    /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.c: In function 'vn_remove':
    /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.c:327:2: error: implicit declaration of function 'path_lookup' [-Werror=implicit-function-declaration]
    cc1: some warnings being treated as errors
    make[5]: *** [/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.o] Error 1
    make[4]: *** [/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl] Error 2
    make[3]: *** [_module_/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module] Error 2
    make[3]: Leaving directory `/usr/src/linux-3.6.3-1-ARCH'
    make[2]: *** [modules] Error 2
    make[2]: Leaving directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11'
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build spl.
    ==> Restart building spl ? [y/N]
    ==> ----------------------------
    ... i'm stuck here, can anyone help me with this one? please !

    Did you read the comments, either on the AUR page or in the output that you posted? They explain it.

  • Libtool: libgvfscommon.la has not been installed in '/usr/lib/gvfs'

    Hi,
    I'm trying to patch gvfs-mtp. The thing is I'm getting strange warnings from libtool like:
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in
    '/usr/lib/gvfs'
    Or with more context:
    ==> Making package: gvfs 1.22.2-4 (Mon Jan 19 12:57:20 EET 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found gvfs-1.22.2.tar.xz
    -> Found 0001-MTP-Attempt-to-set-MTP-filetype-from-mime-type-when-.patch
    ==> Validating source files with sha256sums...
    gvfs-1.22.2.tar.xz ... Passed
    0001-MTP-Attempt-to-set-MTP-filetype-from-mime-type-when-.patch ... Skipped
    ==> Extracting sources...
    -> Extracting gvfs-1.22.2.tar.xz with bsdtar
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    libtoolize: putting auxiliary files in '.'.
    libtoolize: copying file './ltmain.sh'
    libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
    libtoolize: copying file 'm4/libtool.m4'
    libtoolize: copying file 'm4/ltoptions.m4'
    libtoolize: copying file 'm4/ltsugar.m4'
    libtoolize: copying file 'm4/ltversion.m4'
    libtoolize: copying file 'm4/lt~obsolete.m4'
    configure.ac:11: installing './compile'
    configure.ac:4: installing './missing'
    client/Makefile.am: installing './depcomp'
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking whether UID '1000' is supported by ustar format... yes
    checking whether GID '1000' is supported by ustar format... yes
    checking how to create a ustar tar archive... gnutar
    checking whether build environment is sane... yes
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking whether gcc understands -c and -o together... yes
    checking dependency style of gcc... gcc3
    checking for an ANSI C-conforming const... yes
    checking for library containing strerror... none required
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking whether gcc understands -c and -o together... (cached) yes
    checking dependency style of gcc... (cached) gcc3
    checking how to run the C preprocessor... gcc -E
    checking whether ln -s works... yes
    checking whether make sets $(MAKE)... (cached) yes
    checking for pkg-config... /usr/bin/pkg-config
    checking for gio-querymodules... /usr/bin/gio-querymodules
    checking for a sed that does not truncate output... /usr/bin/sed
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... (cached) /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking the maximum length of command line arguments... 1572864
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for a working dd... /usr/bin/dd
    checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
    checking for mt... no
    checking if : is a manifest tool... no
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for xsltproc... /usr/bin/xsltproc
    checking whether make supports nested variables... (cached) yes
    checking for pid_t... yes
    checking return type of signal handlers... void
    checking for size_t... yes
    checking for uid_t in sys/types.h... yes
    checking pkg-config is at least version 0.16... yes
    checking for struct stat.st_mtimensec... no
    checking for struct stat.st_mtim.tv_nsec... yes
    checking for struct stat.st_atimensec... no
    checking for struct stat.st_atim.tv_nsec... yes
    checking for struct stat.st_ctimensec... no
    checking for struct stat.st_ctim.tv_nsec... yes
    checking for gtk-doc... no
    configure: WARNING:
    You will not be able to create source packages with 'make dist'
    because gtk-doc is not found.
    checking for gtkdoc-check... no
    checking for gtkdoc-check... no
    checking for gtkdoc-rebase... no
    checking for gtkdoc-mkpdf... no
    checking whether to build gtk-doc documentation... no
    checking for GTKDOC_DEPS... yes
    checking for GLIB... yes
    checking for DBUS... yes
    checking whether NLS is requested... yes
    checking for intltool >= 0.35.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.20.1
    checking for XML::Parser... ok
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for LC_MESSAGES... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking for ngettext in libc... yes
    checking for dgettext in libc... yes
    checking for bind_textdomain_codeset... yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for ssh... /usr/bin/ssh
    checking sys/un.h usability... yes
    checking sys/un.h presence... yes
    checking for sys/un.h... yes
    checking stropts.h usability... yes
    checking stropts.h presence... yes
    checking for stropts.h... yes
    checking termios.h usability... yes
    checking termios.h presence... yes
    checking for termios.h... yes
    checking util.h usability... no
    checking util.h presence... no
    checking for util.h... no
    checking utmp.h usability... yes
    checking utmp.h presence... yes
    checking for utmp.h... yes
    checking sys/uio.h usability... yes
    checking sys/uio.h presence... yes
    checking for sys/uio.h... yes
    checking sys/param.h usability... yes
    checking sys/param.h presence... yes
    checking for sys/param.h... yes
    checking for getpt... yes
    checking for posix_openpt... yes
    checking for grantpt... yes
    checking for unlockpt... yes
    checking for ptsname... yes
    checking for ptsname_r... yes
    checking for socketpair... yes
    checking for openpty... no
    checking for openpty in -lutil... yes
    checking for library containing login_tty... none required
    checking for HTTP... yes
    checking for AVAHI... yes
    checking for LIBXML... yes
    checking for UDEV... yes
    checking for FUSE... yes
    checking for UDISKS2... yes
    checking for LIBSYSTEMD_LOGIN... yes
    checking for GUDEV... yes
    checking for CDDA... yes
    checking cdio/paranoia/paranoia.h usability... yes
    checking cdio/paranoia/paranoia.h presence... yes
    checking for cdio/paranoia/paranoia.h... yes
    checking for AFC... yes
    checking for GOA... yes
    checking for GPHOTO2... yes
    checking for GPHOTO25... yes
    checking for KEYRING... yes
    checking for BLURAY... yes
    checking for LIBMTP... yes
    checking for LIBMTP_1_1_5... yes
    checking for LIBMTP_1_1_6... yes
    checking for SMBCLIENT... yes
    checking libsmbclient.h usability... yes
    checking libsmbclient.h presence... yes
    checking for libsmbclient.h... yes
    checking for smbc_getFunctionStatVFS in -lsmbclient... yes
    checking for Samba libraries... yes
    checking for GTK... yes
    checking archive.h usability... yes
    checking archive.h presence... yes
    checking for archive.h... yes
    checking for archive_entry_filetype in -larchive... yes
    checking for Archive 3.libraries... yes
    checking for libgcrypt-config... /usr/bin/libgcrypt-config
    checking for LIBGCRYPT - version >= 1.2.2... yes (1.6.2)
    checking LIBGCRYPT API version... okay
    checking whether _NL_ADDRESS_LANG_TERM is declared... yes
    checking whether _NL_ADDRESS_COUNTRY_AB3 is declared... yes
    checking for glib-genmarshal... /usr/bin/glib-genmarshal
    checking sys/statfs.h usability... yes
    checking sys/statfs.h presence... yes
    checking for sys/statfs.h... yes
    checking sys/statvfs.h usability... yes
    checking sys/statvfs.h presence... yes
    checking for sys/statvfs.h... yes
    checking sys/vfs.h usability... yes
    checking sys/vfs.h presence... yes
    checking for sys/vfs.h... yes
    checking sys/mount.h usability... yes
    checking sys/mount.h presence... yes
    checking for sys/mount.h... yes
    checking for sys/param.h... (cached) yes
    checking for statvfs... yes
    checking for statfs... yes
    checking for struct statfs.f_fstypename... no
    checking for struct statfs.f_bavail... yes
    checking for struct statvfs.f_basetype... no
    checking number of arguments to statfs()... 2
    checking for more warnings... no
    checking that generated files are newer than configure... done
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating common/Makefile
    config.status: creating client/Makefile
    config.status: creating metadata/Makefile
    config.status: creating daemon/trashlib/Makefile
    config.status: creating daemon/Makefile
    config.status: creating monitor/Makefile
    config.status: creating monitor/proxy/Makefile
    config.status: creating monitor/hal/Makefile
    config.status: creating monitor/gdu/Makefile
    config.status: creating monitor/udisks2/Makefile
    config.status: creating monitor/gphoto2/Makefile
    config.status: creating monitor/afc/Makefile
    config.status: creating monitor/mtp/Makefile
    config.status: creating monitor/goa/Makefile
    config.status: creating programs/Makefile
    config.status: creating man/Makefile
    config.status: creating test/Makefile
    config.status: creating po/Makefile.in
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    config.status: executing libtool commands
    config.status: executing default-1 commands
    config.status: executing po/stamp-it commands
    gvfs configuration summary:
    gio module directory : ${exec_prefix}/lib/gio/modules
    hotplug backend: gudev
    Blu-ray metadata support: yes
    HTTP/WebDAV support: yes
    ObexFTP support no
    Samba support: yes
    FUSE support: yes
    CDDA support: yes
    Gphoto2 support: yes
    MTP support: yes
    archive support: yes
    AFC support: yes
    AFP support: yes
    DNS-SD support: yes
    Build HAL volume monitor: no (with fast init path: no)
    Build GDU volume monitor: no
    Build udisks2 volume monitor: yes
    Build GOA volume monitor: yes
    Use libsystemd-login: yes
    GNOME Keyring support: yes
    GTK+ support: yes
    Bash-completion support: yes
    Installed tests: no
    make all-recursive
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    Making all in common
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make all-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[3]: Nothing to be done for 'all-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    Making all in metadata
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make all-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    GEN gvfs-metadata.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    Making all in client
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    Making all in daemon
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make all-recursive
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making all in trashlib
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    GEN sftp.mount
    GEN ftp.mount
    GEN trash.mount
    GEN computer.mount
    GEN burn.mount
    GEN localtest.mount
    GEN network.mount
    GEN recent.mount
    GEN http.mount
    GEN dav.mount
    GEN dav+sd.mount
    GEN smb.mount
    GEN smb-browse.mount
    GEN cdda.mount
    GEN gphoto2.mount
    GEN mtp.mount
    GEN dns-sd.mount
    GEN archive.mount
    GEN afc.mount
    GEN afp-browse.mount
    GEN afp.mount
    GEN sftp.localmount
    GEN ftp.localmount
    GEN trash.localmount
    GEN computer.localmount
    GEN burn.localmount
    GEN localtest.localmount
    GEN network.localmount
    GEN recent.localmount
    GEN http.localmount
    GEN dav.localmount
    GEN dav+sd.localmount
    GEN smb.localmount
    GEN smb-browse.localmount
    GEN cdda.localmount
    GEN gphoto2.localmount
    GEN mtp.localmount
    GEN dns-sd.localmount
    GEN archive.localmount
    GEN afc.localmount
    GEN afp-browse.localmount
    GEN afp.localmount
    GEN gvfs-daemon.service
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making all in monitor
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making all in proxy
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make all-am
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[4]: Nothing to be done for 'all-am'.
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    Making all in udisks2
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    GEN org.gtk.Private.UDisks2VolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    Making all in gphoto2
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make all-am
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    GEN org.gtk.Private.GPhoto2VolumeMonitor.service
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    Making all in afc
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    GEN org.gtk.Private.AfcVolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    Making all in mtp
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    GEN org.gtk.Private.MTPVolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    Making all in goa
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    GEN org.gtk.Private.GoaVolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[3]: Nothing to be done for 'all-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making all in po
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    Making all in programs
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    Making all in test
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make all-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    GEN session.conf
    GEN gvfs-daemon.service
    GEN gvfs-metadata.service
    GEN org.gtk.Private.AfcVolumeMonitor.service
    GEN org.gtk.Private.GPhoto2VolumeMonitor.service
    GEN org.gtk.Private.UDisks2VolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Making all in man
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    ==> Entering fakeroot environment...
    ==> Starting package_gvfs()...
    Making install in common
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make install-am
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c libgvfscommon.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/libgvfscommon.so /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfscommon.so
    libtool: install: /usr/bin/install -c .libs/libgvfscommon.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfscommon.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gvfs'
    make[3]: Nothing to be done for 'install-data-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    Making install in metadata
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make install-am
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfsd-metadata '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-metadata /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-metadata
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 gvfs-metadata.service '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    Making install in client
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfsd-fuse '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-fuse /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-fuse
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    /bin/sh ../libtool --mode=install /usr/bin/install -c libgvfsdbus.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    libtool: warning: relinking 'libgvfsdbus.la'
    libtool: install: (cd /home/yuri/build/gvfs/src/gvfs-1.22.2/client; /bin/sh "/home/yuri/build/gvfs/src/gvfs-1.22.2/libtool" --silent --tag CC --mode=relink gcc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex "^g_vfs_.*|g_io_module_load|g_io_module_unload|g_io_module_query" -Wl,-O1,--sort-common,--as-needed,-z,relro -o libgvfsdbus.la -rpath /usr/lib/gio/modules gdaemonvfs.lo gdaemonmount.lo gdaemonvolumemonitor.lo gdaemonfile.lo gdaemonfileinputstream.lo gdaemonfileoutputstream.lo gdaemonfileenumerator.lo gdaemonfilemonitor.lo gvfsdaemondbus.lo gvfsiconloadable.lo gvfsuriutils.lo gvfsurimapper.lo smburi.lo httpuri.lo afpuri.lo ../common/libgvfscommon.la -lgmodule-2.0 -pthread -lgio-2.0 -lgobject-2.0 -lglib-2.0 ../metadata/libmetadata.la -lutil -inst-prefix-dir /home/yuri/build/gvfs/pkg/gvfs)
    libtool: install: /usr/bin/install -c .libs/libgvfsdbus.soT /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgvfsdbus.so
    libtool: install: /usr/bin/install -c .libs/libgvfsdbus.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgvfsdbus.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gio/modules'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/include/gvfs-client/gvfs/'
    /usr/bin/install -c -m 644 gvfsuriutils.h gvfsurimapper.h '/home/yuri/build/gvfs/pkg/gvfs/usr/include/gvfs-client/gvfs/'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/tmpfiles.d'
    /usr/bin/install -c -m 644 gvfsd-fuse-tmpfiles.conf '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/tmpfiles.d'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    Making install in daemon
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make install-recursive
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making install in trashlib
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Nothing to be done for 'install-exec-am'.
    make[4]: Nothing to be done for 'install-data-am'.
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfsd gvfsd-sftp gvfsd-trash gvfsd-computer gvfsd-burn gvfsd-localtest gvfsd-ftp gvfsd-network gvfsd-recent gvfsd-http gvfsd-dav gvfsd-smb-browse gvfsd-smb gvfsd-cdda gvfsd-gphoto2 gvfsd-mtp gvfsd-dnssd gvfsd-archive gvfsd-afc gvfsd-afp-browse gvfsd-afp '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-sftp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-sftp
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-trash /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-trash
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-computer /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-computer
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-burn /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-burn
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-localtest /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-localtest
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-ftp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-ftp
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-network /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-network
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-recent /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-recent
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-http /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-http
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-dav /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-dav
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-smb-browse /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-smb-browse
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-smb /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-smb
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-cdda /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-cdda
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-gphoto2 /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-gphoto2
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-mtp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-mtp
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-dnssd /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-dnssd
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-archive /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-archive
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-afc /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-afc
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-afp-browse /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-afp-browse
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-afp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-afp
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c libgvfsdaemon.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: relinking 'libgvfsdaemon.la'
    libtool: install: (cd /home/yuri/build/gvfs/src/gvfs-1.22.2/daemon; /bin/sh "/home/yuri/build/gvfs/src/gvfs-1.22.2/libtool" --silent --tag CC --mode=relink gcc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -no-undefined -avoid-version -Wl,-O1,--sort-common,--as-needed,-z,relro -o libgvfsdaemon.la -rpath /usr/lib/gvfs gvfsdaemon.lo gvfsbackend.lo gvfschannel.lo gvfsreadchannel.lo gvfswritechannel.lo gvfsmonitor.lo gvfsdaemonutils.lo gvfsjob.lo gvfsjobsource.lo gvfsjobdbus.lo gvfsjobprogress.lo gvfsjobmount.lo gvfsjobunmount.lo gvfsjobmountmountable.lo gvfsjobunmountmountable.lo gvfsjobstartmountable.lo gvfsjobstopmountable.lo gvfsjobpollmountable.lo gvfsjobopenforread.lo gvfsjobopeniconforread.lo gvfsjoberror.lo gvfsjobread.lo gvfsjobseekread.lo gvfsjobcloseread.lo gvfsjobopenforwrite.lo gvfsjobwrite.lo gvfsjobseekwrite.lo gvfsjobtruncate.lo gvfsjobclosewrite.lo gvfsjobqueryinfo.lo gvfsjobqueryinforead.lo gvfsjobqueryinfowrite.lo gvfsjobqueryfsinfo.lo gvfsjobenumerate.lo gvfsjobsetdisplayname.lo gvfsjobtrash.lo gvfsjobdelete.lo gvfsjobcopy.lo gvfsjobmove.lo gvfsjobpush.lo gvfsjobpull.lo gvfsjobmakedirectory.lo gvfsjobmakesymlink.lo gvfsjobsetattribute.lo gvfsjobqueryattributes.lo gvfsjobcreatemonitor.lo gvfskeyring.lo ../common/libgvfscommon.la -lgmodule-2.0 -pthread -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lsecret-1 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lutil -inst-prefix-dir /home/yuri/build/gvfs/pkg/gvfs)
    libtool: install: /usr/bin/install -c .libs/libgvfsdaemon.soT /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfsdaemon.so
    libtool: install: /usr/bin/install -c .libs/libgvfsdaemon.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfsdaemon.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gvfs'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/GConf/gsettings'
    /usr/bin/install -c -m 644 gvfs-smb.convert gvfs-dns-sd.convert '/home/yuri/build/gvfs/pkg/gvfs/usr/share/GConf/gsettings'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/mounts'
    /usr/bin/install -c -m 644 sftp.mount ftp.mount trash.mount computer.mount burn.mount localtest.mount network.mount recent.mount http.mount dav.mount dav+sd.mount smb.mount smb-browse.mount cdda.mount gphoto2.mount mtp.mount dns-sd.mount archive.mount afc.mount afp-browse.mount afp.mount '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/mounts'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 gvfs-daemon.service '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    if test -n "org.gnome.system.smb.gschema.xml org.gnome.system.dns_sd.gschema.xml org.gnome.system.gvfs.enums.xml"; then \
    test -z "/usr/share/glib-2.0/schemas" || /usr/bin/mkdir -p "/home/yuri/build/gvfs/pkg/gvfs/usr/share/glib-2.0/schemas"; \
    /usr/bin/install -c -m 644 org.gnome.system.smb.gschema.xml org.gnome.system.dns_sd.gschema.xml org.gnome.system.gvfs.enums.xml "/home/yuri/build/gvfs/pkg/gvfs/usr/share/glib-2.0/schemas"; \
    test -n "/home/yuri/build/gvfs/pkg/gvfs" || glib-compile-schemas /usr/share/glib-2.0/schemas; \
    fi
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making install in monitor
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making install in proxy
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make install-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[4]: Nothing to be done for 'install-exec-am'.
    mkdir -p /home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/remote-volume-monitors
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c libgioremote-volume-monitor.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    libtool: warning: relinking 'libgioremote-volume-monitor.la'
    libtool: install: (cd /home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy; /bin/sh "/home/yuri/build/gvfs/src/gvfs-1.22.2/libtool" --silent --tag CC --mode=relink gcc -DG_LOG_DOMAIN=\"GVFS-RemoteVolumeMonitor\" -I../../common -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DGIO_MODULE_DIR=\"\" -DREMOTE_VOLUME_MONITORS_DIR=\"/usr/share/gvfs/remote-volume-monitors\" -DGVFS_LOCALEDIR=\"/usr/share/locale\" -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex "^g_io_module_(load|unload|query)" -Wl,-O1,--sort-common,--as-needed,-z,relro -o libgioremote-volume-monitor.la -rpath /usr/lib/gio/modules libgioremote_volume_monitor_la-remote-volume-monitor-module.lo libgioremote_volume_monitor_la-gproxydrive.lo libgioremote_volume_monitor_la-gproxyvolume.lo libgioremote_volume_monitor_la-gproxymount.lo libgioremote_volume_monitor_la-gproxyshadowmount.lo libgioremote_volume_monitor_la-gproxyvolumemonitor.lo libgioremote_volume_monitor_la-gproxymountoperation.lo libgioremote_volume_monitor_la-gvfsvolumemonitordbus.lo -lgmodule-2.0 -pthread -lgio-2.0 -lgobject-2.0 -lglib-2.0 ../../common/libgvfscommon.la -lutil -inst-prefix-dir /home/yuri/build/gvfs/pkg/gvfs)
    libtool: install: /usr/bin/install -c .libs/libgioremote-volume-monitor.soT /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgioremote-volume-monitor.so
    libtool: install: /usr/bin/install -c .libs/libgioremote-volume-monitor.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgioremote-volume-monitor.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gio/modules'
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    Making install in udisks2
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-udisks2-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-udisks2-volume-monitor /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfs-udisks2-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 udisks2.monitor '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.UDisks2VolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[3]: Nothing to be done for 'install-exec-am'.
    make[3]: Nothing to be done for 'install-data-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making install in po
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    linguas="af ar as ast be be@latin bg bn bn_IN ca ca@valencia cs da de el en_GB en@shaw eo es eu et fa fi fr ga gl gu he hu hi id it ja kk kn ko ku lt lv mai mk ml mr nb nds nl nn or pa pl pt pt_BR ro ru sk sl sq sr sr@latin sv ta te tg th tr ug uk vi zh_CN zh_HK zh_TW "; \
    for lang in $linguas; do \
    dir=/home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/$lang/LC_MESSAGES; \
    /bin/sh /home/yuri/build/gvfs/src/gvfs-1.22.2/install-sh -d $dir; \
    if test -r $lang.gmo; then \
    /usr/bin/install -c -m 644 $lang.gmo $dir/gvfs.mo; \
    echo "installing $lang.gmo as $dir/gvfs.mo"; \
    else \
    /usr/bin/install -c -m 644 ./$lang.gmo $dir/gvfs.mo; \
    echo "installing ./$lang.gmo as" \
    "$dir/gvfs.mo"; \
    fi; \
    if test -r $lang.gmo.m; then \
    /usr/bin/install -c -m 644 $lang.gmo.m $dir/gvfs.mo.m; \
    echo "installing $lang.gmo.m as $dir/gvfs.mo.m"; \
    else \
    if test -r ./$lang.gmo.m ; then \
    /usr/bin/install -c -m 644 ./$lang.gmo.m \
    $dir/gvfs.mo.m; \
    echo "installing ./$lang.gmo.m as" \
    "$dir/gvfs.mo.m"; \
    else \
    true; \
    fi; \
    fi; \
    done
    installing af.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/af/LC_MESSAGES/gvfs.mo
    installing ar.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ar/LC_MESSAGES/gvfs.mo
    installing as.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/as/LC_MESSAGES/gvfs.mo
    installing ast.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ast/LC_MESSAGES/gvfs.mo
    installing be.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/be/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/be@latin/LC_MESSAGES/gvfs.mo
    installing bg.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/bg/LC_MESSAGES/gvfs.mo
    installing bn.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/bn/LC_MESSAGES/gvfs.mo
    installing bn_IN.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/bn_IN/LC_MESSAGES/gvfs.mo
    installing ca.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ca/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ca@valencia/LC_MESSAGES/gvfs.mo
    installing cs.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/cs/LC_MESSAGES/gvfs.mo
    installing da.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/da/LC_MESSAGES/gvfs.mo
    installing de.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/de/LC_MESSAGES/gvfs.mo
    installing el.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/el/LC_MESSAGES/gvfs.mo
    installing en_GB.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/en_GB/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/en@shaw/LC_MESSAGES/gvfs.mo
    installing eo.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/eo/LC_MESSAGES/gvfs.mo
    installing es.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/es/LC_MESSAGES/gvfs.mo
    installing eu.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/eu/LC_MESSAGES/gvfs.mo
    installing et.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/et/LC_MESSAGES/gvfs.mo
    installing fa.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/fa/LC_MESSAGES/gvfs.mo
    installing fi.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/fi/LC_MESSAGES/gvfs.mo
    installing fr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/fr/LC_MESSAGES/gvfs.mo
    installing ga.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ga/LC_MESSAGES/gvfs.mo
    installing gl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/gl/LC_MESSAGES/gvfs.mo
    installing gu.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/gu/LC_MESSAGES/gvfs.mo
    installing he.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/he/LC_MESSAGES/gvfs.mo
    installing hu.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/hu/LC_MESSAGES/gvfs.mo
    installing hi.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/hi/LC_MESSAGES/gvfs.mo
    installing id.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/id/LC_MESSAGES/gvfs.mo
    installing it.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/it/LC_MESSAGES/gvfs.mo
    installing ja.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ja/LC_MESSAGES/gvfs.mo
    installing kk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/kk/LC_MESSAGES/gvfs.mo
    installing kn.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/kn/LC_MESSAGES/gvfs.mo
    installing ko.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ko/LC_MESSAGES/gvfs.mo
    installing ku.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ku/LC_MESSAGES/gvfs.mo
    installing lt.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/lt/LC_MESSAGES/gvfs.mo
    installing lv.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/lv/LC_MESSAGES/gvfs.mo
    installing mai.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/mai/LC_MESSAGES/gvfs.mo
    installing mk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/mk/LC_MESSAGES/gvfs.mo
    installing ml.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ml/LC_MESSAGES/gvfs.mo
    installing mr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/mr/LC_MESSAGES/gvfs.mo
    installing nb.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nb/LC_MESSAGES/gvfs.mo
    installing nds.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nds/LC_MESSAGES/gvfs.mo
    installing nl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nl/LC_MESSAGES/gvfs.mo
    installing nn.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nn/LC_MESSAGES/gvfs.mo
    installing or.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/or/LC_MESSAGES/gvfs.mo
    installing pa.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pa/LC_MESSAGES/gvfs.mo
    installing pl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pl/LC_MESSAGES/gvfs.mo
    installing pt.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pt/LC_MESSAGES/gvfs.mo
    installing pt_BR.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pt_BR/LC_MESSAGES/gvfs.mo
    installing ro.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ro/LC_MESSAGES/gvfs.mo
    installing ru.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ru/LC_MESSAGES/gvfs.mo
    installing sk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sk/LC_MESSAGES/gvfs.mo
    installing sl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sl/LC_MESSAGES/gvfs.mo
    installing sq.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sq/LC_MESSAGES/gvfs.mo
    installing sr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sr/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sr@latin/LC_MESSAGES/gvfs.mo
    installing sv.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sv/LC_MESSAGES/gvfs.mo
    installing ta.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ta/LC_MESSAGES/gvfs.mo
    installing te.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/te/LC_MESSAGES/gvfs.mo
    installing tg.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/tg/LC_MESSAGES/gvfs.mo
    installing th.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/th/LC_MESSAGES/gvfs.mo
    installing tr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/tr/LC_MESSAGES/gvfs.mo
    installing ug.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ug/LC_MESSAGES/gvfs.mo
    installing uk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/uk/LC_MESSAGES/gvfs.mo
    installing vi.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/vi/LC_MESSAGES/gvfs.mo
    installing zh_CN.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/zh_CN/LC_MESSAGES/gvfs.mo
    installing zh_HK.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/zh_HK/LC_MESSAGES/gvfs.mo
    installing zh_TW.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/zh_TW/LC_MESSAGES/gvfs.mo
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    Making install in programs
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfs-mount gvfs-cat gvfs-open gvfs-save gvfs-ls gvfs-tree gvfs-info gvfs-set-attribute gvfs-trash gvfs-rename gvfs-rm gvfs-copy gvfs-move gvfs-monitor-file gvfs-monitor-dir gvfs-mkdir gvfs-mime '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    libtool: install: /usr/bin/install -c gvfs-mount /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-mount
    libtool: install: /usr/bin/install -c gvfs-cat /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-cat
    libtool: install: /usr/bin/install -c gvfs-open /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-open
    libtool: install: /usr/bin/install -c gvfs-save /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-save
    libtool: install: /usr/bin/install -c gvfs-ls /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-ls
    libtool: install: /usr/bin/install -c gvfs-tree /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-tree
    libtool: install: /usr/bin/install -c gvfs-info /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-info
    libtool: install: /usr/bin/install -c gvfs-set-attribute /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-set-attribute
    libtool: install: /usr/bin/install -c gvfs-trash /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-trash
    libtool: install: /usr/bin/install -c gvfs-rename /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-rename
    libtool: install: /usr/bin/install -c gvfs-rm /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-rm
    libtool: install: /usr/bin/install -c gvfs-copy /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-copy
    libtool: install: /usr/bin/install -c gvfs-move /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-move
    libtool: install: /usr/bin/install -c gvfs-monitor-file /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-monitor-file
    libtool: install: /usr/bin/install -c gvfs-monitor-dir /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-monitor-dir
    libtool: install: /usr/bin/install -c gvfs-mkdir /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-mkdir
    libtool: install: /usr/bin/install -c gvfs-mime /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-mime
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    /usr/bin/install -c gvfs-less '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/bash-completion/completions'
    /usr/bin/install -c -m 644 completion/gvfs '/home/yuri/build/gvfs/pkg/gvfs/usr/share/bash-completion/completions'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    Making install in test
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make install-am
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make[3]: Nothing to be done for 'install-exec-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Making install in man
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Nothing to be done for 'install-exec-am'.
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man1'
    /usr/bin/install -c -m 644 gvfs-cat.1 gvfs-copy.1 gvfs-info.1 gvfs-ls.1 gvfs-less.1 gvfs-mime.1 gvfs-mkdir.1 gvfs-monitor-dir.1 gvfs-monitor-file.1 gvfs-mount.1 gvfs-move.1 gvfs-open.1 gvfs-rename.1 gvfs-rm.1 gvfs-save.1 gvfs-set-attribute.1 gvfs-trash.1 gvfs-tree.1 gvfsd.1 gvfsd-fuse.1 gvfsd-metadata.1 '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man1'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man7'
    /usr/bin/install -c -m 644 gvfs.7 '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man7'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Nothing to be done for 'install-exec-am'.
    make install-data-hook
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    if test -z "/home/yuri/build/gvfs/pkg/gvfs" -a "/usr/bin/gio-querymodules" != "no" ; then \
    /usr/bin/gio-querymodules /usr/lib/gio/modules ; \
    fi
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-smb()...
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-smb"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-afc()...
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-afc-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-afc-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-afc/usr/lib/gvfs/gvfs-afc-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 afc.monitor '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.AfcVolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/dbus-1/services'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-afc"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-afp()...
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-afp"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-gphoto2()...
    make install-am
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-gphoto2-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-gphoto2-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/lib/gvfs/gvfs-gphoto2-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 gphoto2.monitor '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.GPhoto2VolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/dbus-1/services'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-gphoto2"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-goa()...
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-goa-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-goa-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-goa/usr/lib/gvfs/gvfs-goa-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 goa.monitor '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.GoaVolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/dbus-1/services'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-goa"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-mtp()...
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-mtp-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-mtp-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-mtp/usr/lib/gvfs/gvfs-mtp-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 mtp.monitor '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.MTPVolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/dbus-1/services'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-mtp"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Leaving fakeroot environment.
    ==> Finished making: gvfs 1.22.2-4 (Mon Jan 19 12:57:55 EET 2015)
    What is this supposed to mean? Should I ignore it?

    On closer inspection, there are many more warnings there. Like:
    libtool: warning: remember to run 'libtool --finish /usr/lib/gvfs'
    libtool: warning: relinking 'libgvfsdbus.la'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'

  • [SOLVED] Error occured compiling mate-desktop

    Im installing it from AUR (yaourt) and it's dependencie for (whole) mate-desktop-environment:
    ==> mate-desktop-environment dependencies:
    - mate-common (already installed)
    - mate-doc-utils (already installed)
    - mate-corba (already installed)
    - mate-conf (already installed)
    - libmatecomponent (already installed)
    - mate-mime-data (already installed)
    - mate-vfs (already installed)
    - libmate (already installed)
    - libmatecanvas (already installed)
    - libmatecomponentui (already installed)
    - libmatekbd (already installed)
    - libmatekeyring (already installed)
    - mate-keyring (already installed)
    - libmateui (already installed)
    - libmatenotify (already installed)
    - mate-icon-theme (already installed)
    - mate-doc-utils (already installed)
    - libmateweather (already installed)
    - mate-backgrounds (already installed)
    - mate-desktop (building from AUR)
    - mate-settings-daemon (building from AUR)
    - mate-polkit (building from AUR)
    - mate-session-manager (building from AUR)
    - mate-dialogs (building from AUR)
    - mate-desktop (building from AUR)
    - mate-control-center (building from AUR)
    - mate-panel (building from AUR)
    - mate-file-manager (building from AUR)
    - mate-window-manager (building from AUR)
    - mate-notification-daemon (building from AUR)
    Here is the build output:
    ==> Continue building mate-desktop ? [Y/n]
    ==> --------------------------------------
    ==>
    ==> Building and installing package
    ==> Determining latest git revision...
    -> Version found: 20120425
    ==> Making package: mate-desktop 20120425-1 (Wed Apr 25 03:59:45 CEST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    ==> Extracting Sources...
    ==> Starting build()...
    ==> Connecting to GIT server....
    Cloning into 'mate-desktop'...
    remote: Counting objects: 545, done.
    remote: Compressing objects: 100% (241/241), done.
    remote: Total 545 (delta 290), reused 501 (delta 246)
    Receiving objects: 100% (545/545), 1.26 MiB | 119 KiB/s, done.
    Resolving deltas: 100% (290/290), done.
    ==> GIT checkout done or server timeout
    ==> Starting build...
    Cloning into '/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build'...
    done.
    /usr/bin/mate-autogen
    checking for autoconf >= 2.53...
    testing autoconf2.50... not found.
    testing autoconf... found 2.68
    checking for automake >= 1.9...
    testing automake-1.11... found 1.11.5
    checking for libtool >= 1.4.3...
    testing libtoolize... found 2.4.2
    checking for glib-gettext >= 2.2.0...
    testing glib-gettextize... found 2.30.2
    checking for intltool >= 0.25...
    testing intltoolize... found 0.50.2
    checking for pkg-config >= 0.14.0...
    testing pkg-config... found 0.26
    checking for gtk-doc >= 1.0...
    testing gtkdocize... found 1.18
    checking for mate-doc-utils >= 1.1.0...
    testing mate-doc-prepare... found 1.2.1
    checking for mate-common >= 1.1.0...
    testing mate-doc-common... found 1.2.1
    Checking for required M4 macros...
    Checking for forbidden M4 macros...
    Processing ./configure.in
    Running libtoolize...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
    libtoolize: copying file `m4/libtool.m4'
    libtoolize: copying file `m4/ltoptions.m4'
    libtoolize: copying file `m4/ltsugar.m4'
    libtoolize: copying file `m4/ltversion.m4'
    libtoolize: copying file `m4/lt~obsolete.m4'
    Running glib-gettextize... Ignore non-fatal messages.
    Copying file mkinstalldirs
    Copying file po/Makefile.in.in
    Please add the files
    codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
    progtest.m4
    from the /aclocal directory to your autoconf macro directory
    or directly to your aclocal.m4 file.
    You will also need config.guess and config.sub, which you can get from
    ftp://ftp.gnu.org/pub/gnu/config/.
    Running intltoolize...
    Running gtkdocize...
    Running mate-doc-common...
    Running mate-doc-prepare...
    You should add the contents of '/usr/share/aclocal/mate-doc-utils.m4' to 'aclocal.m4'.
    Putting files in AC_CONFIG_MACRO_DIR, 'm4'.
    Running aclocal-1.11...
    Running autoconf...
    Running autoheader...
    Running automake-1.11...
    configure.in:38: installing `./config.guess'
    configure.in:38: installing `./config.sub'
    configure.in:10: installing `./install-sh'
    configure.in:10: installing `./missing'
    libmate-desktop/Makefile.am: installing `./depcomp'
    Running ./configure --enable-maintainer-mode --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static --disable-scrollkeeper --disable-startup-notification --enable-unique --disable-nyancat ...
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking how to create a ustar tar archive... gnutar
    checking whether make supports nested variables... yes
    checking whether to enable maintainer-specific portions of Makefiles... yes
    checking whether NLS is requested... yes
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for intltool >= 0.40.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.14.2
    checking for XML::Parser... ok
    checking for library containing strerror... none required
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking how to run the C preprocessor... gcc -E
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for ANSI C header files... yes
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... /bin/sed
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop
    checking how to convert i686-pc-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... dlltool
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking whether gcc understands -Wno-sign-compare... yes
    checking what warning flags to pass to the C compiler... -Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare
    checking what language compliance flags to pass to the C compiler...
    checking which gtk+ version to compile against... 2.0
    checking Startup notification library >= 0.5... yes
    Building without libstartup-notification
    checking for X... libraries , headers
    checking for XLIB... yes
    checking for xrandr... yes
    checking for MATE_DESKTOP... yes
    checking for python... /usr/bin/python
    checking for python version... 3.2
    checking for python platform... linux2
    checking for python script directory... ${prefix}/lib/python3.2/site-packages
    checking for python extension module directory... ${exec_prefix}/lib/python3.2/site-packages
    checking for MATE_ABOUT... yes
    checking mate-doc-utils >= 0.3.2... yes
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for LC_MESSAGES... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking for ngettext in libc... yes
    checking for dgettext in libc... yes
    checking for bind_textdomain_codeset... yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for UNIQUE... yes
    checking for mawk... no
    checking for gawk... /usr/bin/gawk
    checking for perl5... no
    checking for perl... /usr/bin/perl
    checking for gtkdoc-check... /usr/bin/gtkdoc-check
    checking for gtkdoc-rebase... /usr/bin/gtkdoc-rebase
    checking for gtkdoc-mkpdf... /usr/bin/gtkdoc-mkpdf
    checking whether to build gtk-doc documentation... no
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating mate-about/Makefile
    config.status: creating mate-about/mate-about.desktop.in
    config.status: creating libmate-desktop/Makefile
    config.status: creating libmate-desktop/libmate/Makefile
    config.status: creating libmate-desktop/libmateui/Makefile
    config.status: creating libmate-desktop/mate-desktop-2.0.pc
    config.status: creating libmate-desktop/mate-desktop-2.0-uninstalled.pc
    config.status: creating docs/Makefile
    config.status: creating docs/reference/Makefile
    config.status: creating docs/reference/mate-desktop/Makefile
    config.status: creating mate-version.xml.in
    config.status: creating po/Makefile.in
    config.status: creating desktop-docs/Makefile
    config.status: creating desktop-docs/fdl/Makefile
    config.status: creating desktop-docs/gpl/Makefile
    config.status: creating desktop-docs/lgpl/Makefile
    config.status: creating man/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    config.status: executing default-1 commands
    config.status: executing po/stamp-it commands
    mate-desktop 1.2.0 ==================
    prefix: /usr
    exec_prefix: ${prefix}
    libdir: ${exec_prefix}/lib
    bindir: ${exec_prefix}/bin
    sbindir: ${exec_prefix}/sbin
    sysconfdir: /etc
    localstatedir: /var
    datadir: ${datarootdir}
    source code location: .
    compiler: gcc
    cflags: -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2
    Maintainer mode: yes
    Warn about deprecations: yes
    Gtk+ version: 2.0
    Build mate-about: yes
    Use libunique: yes
    Build desktop-wide docs: yes
    Use external pnp.ids: no (internal)
    Startup notification support: no
    XRandr support: yes
    Build gtk-doc documentation: no
    Now type `make' to compile mate-desktop
    make all-recursive
    make[1]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build'
    Making all in po
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/po'
    MSGFMT af.gmo
    MSGFMT am.gmo
    MSGFMT an.gmo
    MSGFMT ar.gmo
    MSGFMT as.gmo
    MSGFMT ast.gmo
    MSGFMT az.gmo
    MSGFMT be.gmo
    MSGFMT [email protected]
    MSGFMT bg.gmo
    MSGFMT bn.gmo
    MSGFMT bn_IN.gmo
    MSGFMT br.gmo
    MSGFMT bs.gmo
    MSGFMT ca.gmo
    MSGFMT [email protected]
    MSGFMT crh.gmo
    MSGFMT cs.gmo
    MSGFMT cy.gmo
    MSGFMT da.gmo
    MSGFMT de.gmo
    MSGFMT dz.gmo
    MSGFMT el.gmo
    MSGFMT en_CA.gmo
    MSGFMT en_GB.gmo
    MSGFMT [email protected]
    MSGFMT eo.gmo
    MSGFMT es.gmo
    MSGFMT et.gmo
    MSGFMT eu.gmo
    MSGFMT fa.gmo
    MSGFMT fi.gmo
    MSGFMT fr.gmo
    MSGFMT fur.gmo
    MSGFMT ga.gmo
    MSGFMT gl.gmo
    MSGFMT gu.gmo
    MSGFMT he.gmo
    MSGFMT hi.gmo
    MSGFMT hr.gmo
    MSGFMT hu.gmo
    MSGFMT hy.gmo
    MSGFMT ia.gmo
    MSGFMT id.gmo
    MSGFMT ig.gmo
    MSGFMT is.gmo
    MSGFMT it.gmo
    MSGFMT ja.gmo
    MSGFMT ka.gmo
    MSGFMT kk.gmo
    MSGFMT kn.gmo
    MSGFMT ko.gmo
    MSGFMT ku.gmo
    MSGFMT ky.gmo
    MSGFMT li.gmo
    MSGFMT lo.gmo
    MSGFMT lt.gmo
    MSGFMT lv.gmo
    MSGFMT mai.gmo
    MSGFMT mg.gmo
    MSGFMT mi.gmo
    MSGFMT mk.gmo
    MSGFMT ml.gmo
    MSGFMT mn.gmo
    MSGFMT mr.gmo
    MSGFMT ms.gmo
    MSGFMT nb.gmo
    MSGFMT nds.gmo
    MSGFMT ne.gmo
    MSGFMT nl.gmo
    MSGFMT nn.gmo
    MSGFMT nso.gmo
    MSGFMT oc.gmo
    MSGFMT or.gmo
    MSGFMT pa.gmo
    MSGFMT pl.gmo
    MSGFMT ps.gmo
    MSGFMT pt.gmo
    MSGFMT pt_BR.gmo
    MSGFMT ro.gmo
    MSGFMT ru.gmo
    MSGFMT rw.gmo
    MSGFMT si.gmo
    MSGFMT sk.gmo
    MSGFMT sl.gmo
    MSGFMT sq.gmo
    MSGFMT sr.gmo
    MSGFMT [email protected]
    MSGFMT sv.gmo
    MSGFMT ta.gmo
    MSGFMT te.gmo
    MSGFMT th.gmo
    MSGFMT tk.gmo
    MSGFMT tr.gmo
    MSGFMT ug.gmo
    MSGFMT uk.gmo
    MSGFMT ur.gmo
    MSGFMT uz.gmo
    MSGFMT [email protected]
    MSGFMT vi.gmo
    MSGFMT wa.gmo
    MSGFMT xh.gmo
    MSGFMT yi.gmo
    MSGFMT yo.gmo
    MSGFMT zh_CN.gmo
    MSGFMT zh_HK.gmo
    MSGFMT zh_TW.gmo
    MSGFMT zu.gmo
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/po'
    Making all in libmate-desktop
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop'
    Making all in libmate
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop/libmate'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop/libmate'
    Making all in libmateui
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop/libmateui'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop/libmateui'
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop'
    CC mate-desktop-item.lo
    CC mate-desktop-utils.lo
    CC mate-desktop-thumbnail.lo
    mate-desktop-thumbnail.c: In function 'mimetype_supported_by_gdk_pixbuf':
    mate-desktop-thumbnail.c:622:3: warning: passing argument 2 of 'g_hash_table_new_full' from incompatible pointer type [enabled by default]
    In file included from /usr/include/glib-2.0/glib.h:50:0,
    from mate-desktop-thumbnail.c:36:
    /usr/include/glib-2.0/glib/ghash.h:62:13: note: expected 'GEqualFunc' but argument is of type 'gboolean (*)(const gchar *, const gchar *)'
    CC mate-thumbnail-pixbuf-utils.lo
    CC mate-bg.lo
    mate-bg.c: In function 'pixbuf_draw_gradient':
    mate-bg.c:2402:10: warning: variable 'dst_limit' set but not used [-Wunused-but-set-variable]
    CC mate-bg-crossfade.lo
    mate-bg-crossfade.c: In function 'draw_background':
    mate-bg-crossfade.c:402:3: warning: implicit declaration of function 'gdk_drawable_get_display' [-Wimplicit-function-declaration]
    mate-bg-crossfade.c:402:3: warning: nested extern declaration of 'gdk_drawable_get_display' [-Wnested-externs]
    mate-bg-crossfade.c:402:11: warning: assignment makes pointer from integer without a cast [enabled by default]
    mate-bg-crossfade.c:401:15: warning: variable 'display' set but not used [-Wunused-but-set-variable]
    CC display-name.lo
    CC mate-rr.lo
    CC mate-rr-config.lo
    CC mate-rr-labeler.lo
    CC edid-parse.lo
    CCLD libmate-desktop-2.la
    CC test-ditem.o
    test-ditem.c: In function 'test_ditem':
    test-ditem.c:93:9: warning: ignoring return value of 'getcwd', declared with attribute warn_unused_result [-Wunused-result]
    CCLD test-ditem
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop'
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop'
    Making all in docs
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs'
    Making all in reference
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference'
    Making all in mate-desktop
    make[4]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference/mate-desktop'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference/mate-desktop'
    make[4]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference'
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference'
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs'
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs'
    Making all in man
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/man'
    make[2]: Nothing to be done for `all'.
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/man'
    Making all in mate-about
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/mate-about'
    CC mate_about-mate-about.o
    In file included from mate-about.c:24:0:
    mate-about.h:63:3: error: initializer element is not constant
    mate-about.h:63:3: error: (near initialization for 'comments_array[0]')
    mate-about.h:66:3: error: initializer element is not constant
    mate-about.h:66:3: error: (near initialization for 'comments_array[1]')
    mate-about.h:69:3: error: initializer element is not constant
    mate-about.h:69:3: error: (near initialization for 'comments_array[2]')
    mate-about.h:73:3: error: initializer element is not constant
    mate-about.h:73:3: error: (near initialization for 'comments_array[3]')
    mate-about.h:76:3: error: initializer element is not constant
    mate-about.h:76:3: error: (near initialization for 'comments_array[4]')
    mate-about.h:81:2: error: initializer element is not constant
    mate-about.h:81:2: error: (near initialization for 'comments_array[5]')
    make[2]: *** [mate_about-mate-about.o] Error 1
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/mate-about'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build'
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build mate-desktop.
    ==> Restart building mate-desktop ? [y/N]
    ==> --
    Thanks
    Last edited by broi (2012-04-25 11:31:17)

    trusktr wrote:
    Hey, I didn't really take a look at your errors, but... Have you tried the mate-desktop.org repo? There's no need to compile anything if you install from there. Just add
    [mate]
    Server = http://packages.mate-desktop.org/repo/archlinux/$arch
    to /etc/pacman.conf then do 'pacman -S mate' for a basic install, or 'pacman -S mate mate-extra mate-extras' for a full install.
    Thanks bro, it works now!

Maybe you are looking for

  • Fcpx editing error, library not open

    Fcpx editing error, library not open,The backup file is not open.

  • How to enable the check box using cl_salv_table?

    Hi Experts,              what code will change for to enable the check box in the following Report program? REPORT  ZMA_ALV_OOPS2. TABLES:MARA. TYPES:BEGIN OF T_MARA,       SEL   TYPE C,       MATNR TYPE MARA-MATNR,       WERKS TYPE MARC-WERKS,      

  • PS3 & Xbox NAT EA4500

    Hello, I'd like to get some assistance with an NAT issue my family is having. I'm sorry if this is in the wrong section.  We recently upgraded to the linksys ea4500 router. My brother plays call of duty on the PS3 and I play call of duty on the Xbox.

  • Make Tween button inactive while _MC is tweening

    Hi there, can anyone help a novice flash user! I've set up 2 buttons to tween a movie clip to go diagonally left or right. I need to prevent the user from clicking the buttons (make them inactive) while the _MC is tweening but I still want the button

  • To Sort

    Good Morning Everyone, We are wondering how to sort in Report. If you have expereice, please share with us. Thanks in advance, NY