Edit the shell script to determine if the Conf directory is present.  If
not then create the Conf directory.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Lee Leahy <leroy.p.le...@intel.com>
---
 edksetup.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/edksetup.sh b/edksetup.sh
index 57368b5..d89ef9d 100755
--- a/edksetup.sh
+++ b/edksetup.sh
@@ -72,6 +72,10 @@ function SetWorkspace()
 
 function SetupEnv()
 {
+  if [ ! -d "$WORKSPACE/Conf" ]
+  then
+    mkdir $WORKSPACE/Conf
+  fi
   if [ -n "$EDK_TOOLS_PATH" ]
   then
     . $EDK_TOOLS_PATH/BuildEnv $*
-- 
1.9.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel

Reply via email to