Re: osx: pbxbuild crash when $NEXT_ROOT is defined to /System

From: uli (ul..ac.com)
Date: Thu Sep 05 2002 - 12:02:59 EDT

  • Next message: Andrus Adamchik: "Re: osx: pbxbuild crash when $NEXT_ROOT is defined to /System"

    Hi Kay,

    could you try if this helps:

    Remove your NEXT_ROOT variable.

    In the build.xml for the WOApplication go the target setProps and change

             <property name="next_root" value="${env.NEXT_ROOT}"/>
             <property name="local_fw_root"
    value="${next_root}/Local/Library/Frameworks"/>

    to

         <property name="next_root" value="${env.NEXT_ROOT}"/>
         <condition property="next.root" value="/System">
                 <and>
                     <os family="mac" />
                     <os family="unix" />
                 </and>
             </condition>
            <property name="local_fw_root"
    value="${next_root}/Local/Library/Frameworks"/>

    Please let us know if this works.

    Andrus should I change the examples if it works?

    Ulrich

    Am Donnerstag, 05.09.02, um 17:46 Uhr (Europe/Berlin) schrieb Kaj Hejer:

    > Just fyi:
    >
    > Today I filed the following bugreport (#3044039):
    >
    >
    > * SUMMARY
    > pbxbuild crash when $NEXT_ROOT is defined to /System
    >
    >
    > * STEPS TO REPRODUCE
    > 1. Open a Terminal window with bash as shell
    > 2. say: export NEXT_ROOT=/System
    > 3. cd to the directory of a WO project
    > 4. say: pbxbuild
    >
    > Now I get
    >
    > bash-2.05a$ pbxbuild
    > Bus error (core dumped)
    >
    >
    > When I undefine $NEXT_ROOT pbxbuild works just fine.
    >
    > My reason for setting $NEXT_ROOT is that some of the ant tasks from
    > WOProject (http://objectstyle.org/woproject/) at the moment needs
    > $NEXT_ROOT to be defined.
    >
    > I will send you the crashlog as an attachment.
    >
    >
    > Config:
    >
    > PowerBook G4 500Mhz, osx 10.2.1 (6D44), WO5.1.4, August 2002 Dev Tools
    > 10.2
    > Update.
    >
    >
    >
    > -Kaj :)



    This archive was generated by hypermail 2.0.0 : Thu Sep 05 2002 - 12:03:18 EDT