Skip to content

Commit

Permalink
[bsp/Infineon] 修复 SCons 中的 typo 并优化表达 (#9262)
Browse files Browse the repository at this point in the history
Co-authored-by: clow1710 <[email protected]>
  • Loading branch information
clow1710 and clow1710 authored Jul 29, 2024
1 parent 24d3ed8 commit 8d15f15
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bsp/Infineon/libraries/templates/XMC7200D/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ SDK_ROOT = os.path.abspath('./')
if os.path.exists(SDK_ROOT + '/packages'):
libraries_path_prefix = SDK_ROOT + '/packages'
else:
print("Error: Don't have Packages for HAL_Driver, Please Use \"pkgs --Update\" in ENV")
print("Error: Packages for HAL_Driver does not exist, pull it in ENV using `pkg --update`.")

SDK_LIB = libraries_path_prefix
Export('SDK_LIB')
Expand Down
2 changes: 1 addition & 1 deletion bsp/Infineon/psoc6-cy8ckit-062-BLE/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ libraries_path_prefix = SDK_ROOT
if os.path.exists(SDK_ROOT + '/packages'):
libraries_path_prefix = SDK_ROOT + '/packages'
else:
print("Error: Don't have Packages for HAL_Driver, Please Use \"pkgs --Update\" in ENV")
print("Error: Packages for HAL_Driver does not exist, pull it in ENV using `pkg --update`.")

SDK_LIB = libraries_path_prefix
Export('SDK_LIB')
Expand Down
2 changes: 1 addition & 1 deletion bsp/Infineon/psoc6-cy8ckit-062-WIFI-BT/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ libraries_path_prefix = SDK_ROOT
if os.path.exists(SDK_ROOT + '/packages'):
libraries_path_prefix = SDK_ROOT + '/packages'
else:
print("Error: Don't have Packages for HAL_Driver, Please Use \"pkgs --Update\" in ENV")
print("Error: Packages for HAL_Driver does not exist, pull it in ENV using `pkg --update`.")

SDK_LIB = libraries_path_prefix
Export('SDK_LIB')
Expand Down
2 changes: 1 addition & 1 deletion bsp/Infineon/psoc6-cy8ckit-062S2-43012/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ libraries_path_prefix = SDK_ROOT
if os.path.exists(SDK_ROOT + '/packages'):
libraries_path_prefix = SDK_ROOT + '/packages'
else:
print("Error: Don't have Packages for HAL_Driver, Please Use \"pkgs --Update\" in ENV")
print("Error: Packages for HAL_Driver does not exist, pull it in ENV using `pkg --update`.")

SDK_LIB = libraries_path_prefix
Export('SDK_LIB')
Expand Down
2 changes: 1 addition & 1 deletion bsp/Infineon/psoc6-cy8ckit-062s4/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ libraries_path_prefix = SDK_ROOT
if os.path.exists(SDK_ROOT + '/packages'):
libraries_path_prefix = SDK_ROOT + '/packages'
else:
print("Error: Don't have Packages for HAL_Driver, Please Use \"pkgs --Update\" in ENV")
print("Error: Packages for HAL_Driver does not exist, pull it in ENV using `pkg --update`.")

SDK_LIB = libraries_path_prefix
Export('SDK_LIB')
Expand Down
2 changes: 1 addition & 1 deletion bsp/Infineon/psoc6-cy8cproto-062S3-4343W/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ libraries_path_prefix = SDK_ROOT
if os.path.exists(SDK_ROOT + '/packages'):
libraries_path_prefix = SDK_ROOT + '/packages'
else:
print("Error: Don't have Packages for HAL_Driver, Please Use \"pkgs --Update\" in ENV")
print("Error: Packages for HAL_Driver does not exist, pull it in ENV using `pkg --update`.")

SDK_LIB = libraries_path_prefix
Export('SDK_LIB')
Expand Down
2 changes: 1 addition & 1 deletion bsp/Infineon/psoc6-evaluationkit-062S2/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ libraries_path_prefix = SDK_ROOT
if os.path.exists(SDK_ROOT + '/packages'):
libraries_path_prefix = SDK_ROOT + '/packages'
else:
print("Error: Don't have Packages for HAL_Driver, Please Use \"pkgs --Update\" in ENV")
print("Error: Packages for HAL_Driver does not exist, pull it in ENV using `pkg --update`.")

SDK_LIB = libraries_path_prefix
Export('SDK_LIB')
Expand Down
2 changes: 1 addition & 1 deletion bsp/Infineon/xmc7200-kit_xmc7200_evk/SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ libraries_path_prefix = SDK_ROOT
if os.path.exists(SDK_ROOT + '/packages'):
libraries_path_prefix = SDK_ROOT + '/packages'
else:
print("Error: Don't have Packages for HAL_Driver, Please Use \"pkgs --Update\" in ENV")
print("Error: Packages for HAL_Driver does not exist, pull it in ENV using `pkg --update`.")

SDK_LIB = libraries_path_prefix
Export('SDK_LIB')
Expand Down

0 comments on commit 8d15f15

Please sign in to comment.