compat/cuda/ptx2c: don't drop final newline

This commit is contained in:
Timo Rothenpieler 2019-05-24 19:23:39 +02:00
parent 4cfc34d9a8
commit a6818d5bd0
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ IN="$2"
NAME="$(basename "$IN" | sed 's/\..*//')"
printf "const char %s_ptx[] = \\" "$NAME" > "$OUT"
while read LINE
while IFS= read -r LINE
do
printf "\n\t\"%s\\\n\"" "$(printf "%s" "$LINE" | sed -e 's/\r//g' -e 's/["\\]/\\&/g')" >> "$OUT"
done < "$IN"