[Webkit-unassigned] [Bug 7959] New: generate-derived-sources script assumes environment variables

bugzilla-daemon at opendarwin.org bugzilla-daemon at opendarwin.org
Fri Mar 24 07:24:30 PST 2006


http://bugzilla.opendarwin.org/show_bug.cgi?id=7959

           Summary: generate-derived-sources  script assumes environment
                    variables
           Product: WebKit
           Version: 420+ (nightly)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: Tools
        AssignedTo: webkit-unassigned at opendarwin.org
        ReportedBy: mike.emmel at gmail.com


Script assume some evn vars are set this adds defaults if not set

Index: generate-derived-sources
===================================================================
--- generate-derived-sources    (revision 13454)
+++ generate-derived-sources    (working copy)
@@ -1,5 +1,13 @@
 #!/bin/sh

+if [ $SRCROOT"x" == "x" ] ; then
+SRCROOT=`pwd`
+fi
+
+if [ $BUILT_PRODUCTS_DIR"x" == "x" ] ; then
+BUILT_PRODUCTS_DIR=`pwd`
+fi
+
 DerivedSourcesDir="${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore"
 WebCoreSourceRoot="${SRCROOT}"


-- 
Configure bugmail: http://bugzilla.opendarwin.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list