summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMahesh Radhakrishnan2019-09-16 15:02:45 -0500
committerMahesh Radhakrishnan2019-09-16 15:02:45 -0500
commitf54e07858f47603c08cb4de6fd75164974cece27 (patch)
treef8c44bbbfde42a19909b35b5762952f42d92b8b3
parent47c06b52350746e9de6c4366a26e00738f510941 (diff)
downloadprocessor-pdk-packages-f54e07858f47603c08cb4de6fd75164974cece27.tar.gz
processor-pdk-packages-f54e07858f47603c08cb4de6fd75164974cece27.tar.xz
processor-pdk-packages-f54e07858f47603c08cb4de6fd75164974cece27.zip
PRSDK-6445: Fix for projects not being detected on windows
-rw-r--r--release/full/pdkProjectCreate.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/full/pdkProjectCreate.bat b/release/full/pdkProjectCreate.bat
index be3cd9d..282ca7a 100644
--- a/release/full/pdkProjectCreate.bat
+++ b/release/full/pdkProjectCreate.bat
@@ -761,7 +761,7 @@ if %PROJECT_TYPE% == all set PROJECT_TYPE=""
761if %PROCESSOR% == dsp ( 761if %PROCESSOR% == dsp (
762 REM Search for all the dsp test Project Files in the PDK. 762 REM Search for all the dsp test Project Files in the PDK.
763 for /F %%I IN ('dir /b /s *%MODULE%*%BOARD%*%DSP_TYPE%*%PROJECT_TYPE%*roject.txt') do ( 763 for /F %%I IN ('dir /b /s *%MODULE%*%BOARD%*%DSP_TYPE%*%PROJECT_TYPE%*roject.txt') do (
764 set project_detected = 1 764 set project_detected=1
765 765
766 echo Detected Test Project: %%~nI 766 echo Detected Test Project: %%~nI
767 767
@@ -805,7 +805,7 @@ if %PROCESSOR% == mpu set arm_or_mpu="T"
805if %arm_or_mpu% == "T" ( 805if %arm_or_mpu% == "T" (
806 REM Search for all the arm test Project Files in the PDK. 806 REM Search for all the arm test Project Files in the PDK.
807 for /F %%I IN ('dir /b /s *%MODULE%*%BOARD%*%PROCESSOR%*%PROJECT_TYPE%*roject.txt %AMIC110BOARD%') do ( 807 for /F %%I IN ('dir /b /s *%MODULE%*%BOARD%*%PROCESSOR%*%PROJECT_TYPE%*roject.txt %AMIC110BOARD%') do (
808 set project_detected = 1 808 set project_detected=1
809 809
810 echo Detected Test Project: %%~nI 810 echo Detected Test Project: %%~nI
811 811
@@ -840,7 +840,7 @@ if %PROCESSOR% == mcu set m4_or_mcu="T"
840if %m4_or_mcu% == "T" ( 840if %m4_or_mcu% == "T" (
841 REM Search for all the m4 test Project Files in the PDK. 841 REM Search for all the m4 test Project Files in the PDK.
842 for /F %%I IN ('dir /b /s *%MODULE%*%BOARD%*%PROCESSOR%*%PROJECT_TYPE%*roject.txt') do ( 842 for /F %%I IN ('dir /b /s *%MODULE%*%BOARD%*%PROCESSOR%*%PROJECT_TYPE%*roject.txt') do (
843 set project_detected = 1 843 set project_detected=1
844 844
845 echo Detected Test Project: %%~nI 845 echo Detected Test Project: %%~nI
846 846