diff options
author | Yunhua Feng <yunhuax.feng@intel.com> | 2018-09-14 10:54:59 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-09-18 09:40:30 +0800 |
commit | 3eb747c16be8fb9951f703f449e1287d4269ba12 (patch) | |
tree | ad216d94a61496ea1d159274c9efb95bafd85c05 /BaseTools/BinWrappers | |
parent | 1737b7e3b402983f0c9d14b931b2238c27d247a9 (diff) | |
download | edk2-3eb747c16be8fb9951f703f449e1287d4269ba12.tar.gz edk2-3eb747c16be8fb9951f703f449e1287d4269ba12.tar.bz2 edk2-3eb747c16be8fb9951f703f449e1287d4269ba12.zip |
BaseTools: Regression bug Linux script used windows format
regression by 15e20228258c1714cd90207a52101a5b1b54cd2c
and 9f3594782de9051cbf599f9af006903ed3f6669e
Linux execute script must use '\n' not '\r\n' for end of line
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/BinWrappers')
-rwxr-xr-x | BaseTools/BinWrappers/PosixLike/BPDG | 2 | ||||
-rwxr-xr-x | BaseTools/BinWrappers/PosixLike/GenFds | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/BinWrappers/PosixLike/BPDG b/BaseTools/BinWrappers/PosixLike/BPDG index bca1bae96a..276c7ea207 100755 --- a/BaseTools/BinWrappers/PosixLike/BPDG +++ b/BaseTools/BinWrappers/PosixLike/BPDG @@ -11,4 +11,4 @@ dir=$(dirname "$full_cmd") cmd=${full_cmd##*/} export PYTHONPATH="$dir/../../Source/Python${PYTHONPATH:+:"$PYTHONPATH"}" -exec "${python_exe:-python}" -m $cmd.$cmd "$@"
+exec "${python_exe:-python}" -m $cmd.$cmd "$@" diff --git a/BaseTools/BinWrappers/PosixLike/GenFds b/BaseTools/BinWrappers/PosixLike/GenFds index bca1bae96a..276c7ea207 100755 --- a/BaseTools/BinWrappers/PosixLike/GenFds +++ b/BaseTools/BinWrappers/PosixLike/GenFds @@ -11,4 +11,4 @@ dir=$(dirname "$full_cmd") cmd=${full_cmd##*/} export PYTHONPATH="$dir/../../Source/Python${PYTHONPATH:+:"$PYTHONPATH"}" -exec "${python_exe:-python}" -m $cmd.$cmd "$@"
+exec "${python_exe:-python}" -m $cmd.$cmd "$@" |