]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/BuildEnv
Return from ProgramBar() after VF BARs are programmed.
[mirror_edk2.git] / BaseTools / BuildEnv
old mode 100644 (file)
new mode 100755 (executable)
index 83e12d7..144be28
@@ -1,6 +1,6 @@
 #
-# Copyright (c) 2006 - 2007, Intel Corporation
-# All rights reserved. This program and the accompanying materials
+# Copyright (c) 2006 - 2007, Intel Corporation. All rights reserved.<BR>
+# This program and the accompanying materials
 # are licensed and made available under the terms and conditions of the BSD License
 # which accompanies this distribution.  The full text of the license may be found at
 # http://opensource.org/licenses/bsd-license.php
@@ -196,7 +196,7 @@ AddEdkToolsToPath() {
 
 CopySingleTemplateFile() {
 
-  SRC_FILENAME=BaseTools/Conf/$1.template
+  SRC_FILENAME=Conf/$1.template
   DST_FILENAME=Conf/$1.txt
 
   if [ -e $WORKSPACE/$DST_FILENAME ]
@@ -204,9 +204,9 @@ CopySingleTemplateFile() {
     return
   fi
 
-  echo "Copying \$WORKSPACE/$SRC_FILENAME"
+  echo "Copying \$EDK_TOOLS_PATH/$SRC_FILENAME"
   echo "     to \$WORKSPACE/$DST_FILENAME"
-  SRC_FILENAME=$WORKSPACE/$SRC_FILENAME
+  SRC_FILENAME=$EDK_TOOLS_PATH/$SRC_FILENAME
   DST_FILENAME=$WORKSPACE/$DST_FILENAME
   cp $SRC_FILENAME $DST_FILENAME