diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-01-21 08:24:50 +0100 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-01-21 08:24:50 +0100 |
commit | 55abae8769c53171b1c3caa4dcac7f1fdbc5b65c (patch) | |
tree | bc5e12acd22b875e2cd690ec764bb5fa3917f4dd /scripts/vendors | |
parent | df204a135073776aef6d5c5b5dcd8b5afcaab23a (diff) | |
download | ghdl-55abae8769c53171b1c3caa4dcac7f1fdbc5b65c.tar.gz ghdl-55abae8769c53171b1c3caa4dcac7f1fdbc5b65c.tar.bz2 ghdl-55abae8769c53171b1c3caa4dcac7f1fdbc5b65c.zip |
vendors/uvvm: adjust newline trim
Diffstat (limited to 'scripts/vendors')
-rwxr-xr-x | scripts/vendors/compile-uvvm.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vendors/compile-uvvm.sh b/scripts/vendors/compile-uvvm.sh index 873d6514d..c244b5e94 100755 --- a/scripts/vendors/compile-uvvm.sh +++ b/scripts/vendors/compile-uvvm.sh @@ -373,7 +373,7 @@ test $VERBOSE -eq 1 && echo -e " ${ANSI_GRAY}Reading compile order files...${AN Components=() while IFS= read -r Component; do - Component=${Component%\r} + Component=${Component%'\r'} if [[ ${Component:0:2} != "# " ]]; then Components+=("$Component") fi @@ -409,7 +409,7 @@ for ComponentName in "${Components[@]}"; do fi while IFS= read -r File; do - File=${File%\r} + File=${File%'\r'} if [[ ${File:0:2} == "# " ]]; then if [[ ${File:2:7} == "library" ]]; then LibraryName=${File:10} |