Projects
Wiki     New Ticket     View Tickets     Timeline     Browse Source     Search

{5} Assigned, Active Tickets by Owner (Full Description) (3 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

wsiegrist@… (3 matches)

Ticket Summary Component Milestone Type Created
Description
#1 installXcodebuild incompatible with Xcode 3.0 darwinbuild defect 11/12/07

The installXcodebuild script does not properly determine the dependencies of Xcode 3.0's xcodebuild script. This prevents darwinbuild from being used to compile projects that require Xcode 3.0 while using the chrooted environment.

Attached is a logfile from an initial run of xcodebuild while using the darwintrace.dylib library, indicating most preliminary dependencies.


#5 Need a root for dtrace roots/hdrs None defect 03/14/08

I'm attempting to build Libc_debug, and it has a dependency on dtrace. Unfortunately there is no root available for it.


#2 Darwinbuild does not work if DARWIN_BUILDROOT directory contains a space character darwinbuild defect 11/13/07

proposed patch

--- darwinbuild 2007-11-13 10:51:47.000000000 +0100
+++ /usr/local/bin/darwinbuild  2007-11-13 12:02:12.000000000 +0100
@@ -203,7 +203,7 @@
        SourceCache="$DARWIN_BUILDROOT/Sources"
 fi
 
-if [ ! -e $SourceCache ]; then
+if [ ! -e "$SourceCache" ]; then
        mkdir -p "$SourceCache"
 fi
 
@@ -287,7 +287,7 @@
 ### a cached value.
 ###
 if [ "$build" == "" -a -f "$DARWIN_BUILDROOT/.build/build" ]; then
-       build="$(cat $DARWIN_BUILDROOT/.build/build)"
+       build="$(cat "$DARWIN_BUILDROOT"/.build/build)"
 fi
 
 ###

Note: See TracReports for help on using and creating reports.