]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Fix the UnixPkg default to have the tools come from a seperate BaseTools project...
authorajfish <ajfish@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 8 Dec 2009 01:55:00 +0000 (01:55 +0000)
committerajfish <ajfish@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 8 Dec 2009 01:55:00 +0000 (01:55 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9538 6f19259b-4bc3-4df7-8a09-765794883524

UnixPkg/Xcode/xcode_project/xcode_project.xcodeproj/project.pbxproj
UnixPkg/build.sh

index 199700f9ce5bec4870877c486a27a9ace000553f..87eb84de33588e48c100d7e16ef85044b51c0f1f 100644 (file)
@@ -6,15 +6,10 @@
        objectVersion = 45;
        objects = {
 
-/* Begin PBXFileReference section */
-               F27EDBED101FA6FC0097B575 /* PciIoKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PciIoKit.h; path = ../../Sec/PciIoKit.h; sourceTree = SOURCE_ROOT; };
-/* End PBXFileReference section */
-
 /* Begin PBXGroup section */
                08FB7794FE84155DC02AAC07 /* xcode_project */ = {
                        isa = PBXGroup;
                        children = (
-                               F27EDBED101FA6FC0097B575 /* PciIoKit.h */,
                        );
                        name = xcode_project;
                        sourceTree = "<group>";
index 2770019a1f7b7dd9d1b2e39c153c94b5a80de0f8..16da8d051565257d28bc0f950e38c5cba5250d37 100755 (executable)
@@ -22,7 +22,11 @@ if [ -z "$WORKSPACE" ]
 then
   echo Initializing workspace
   cd ..
-  export EDK_TOOLS_PATH=`pwd`/BaseTools
+# This version is for the tools in the BaseTools project.
+# this assumes svn pulls have the same root dir
+  export EDK_TOOLS_PATH=`pwd`/../BaseTools
+# This version is for the tools source in edk2
+#  export EDK_TOOLS_PATH=`pwd`/BaseTools
   echo $EDK_TOOLS_PATH
   source edksetup.sh BaseTools
 else
@@ -90,7 +94,8 @@ done
 #
 echo $PATH
 echo `which build`
-build -p $WORKSPACE/EdkShellPkg/EdkShellPkg.dsc -a IA32 -t $TARGET_TOOLS $1 $2 $3 $4 $5 $6 $7 $8
+# Uncomment this if you want to build the shell. 
+#build -p $WORKSPACE/EdkShellPkg/EdkShellPkg.dsc -a IA32 -t $TARGET_TOOLS $1 $2 $3 $4 $5 $6 $7 $8
 build -p $WORKSPACE/UnixPkg/UnixPkg.dsc         -a IA32 -t $TARGET_TOOLS $1 $2 $3 $4 $5 $6 $7 $8
 exit $?