diff mbox series

[FFmpeg-devel,2/2] compat/cuda/ptx2c: fix BSD sed compatibility

Message ID 20200523040122.83476-2-rcombs@rcombs.me
State New
Headers show
Series [FFmpeg-devel,1/2] compat/cuda/ptx2c: remove shell loop | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

rcombs May 23, 2020, 4:01 a.m. UTC
This fixes cross-compiling from macOS to other platforms
---
 compat/cuda/ptx2c.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/compat/cuda/ptx2c.sh b/compat/cuda/ptx2c.sh
index 435a9b4b6c..c41875a2d4 100755
--- a/compat/cuda/ptx2c.sh
+++ b/compat/cuda/ptx2c.sh
@@ -28,7 +28,7 @@  NAME="$(basename "$IN" | sed 's/\..*//')"
 
 printf "const char %s_ptx[] = \\" "$NAME" > "$OUT"
 echo >> "$OUT"
-sed -e 's/\r//g' -e 's/["\\]/\\&/g' -e 's/^[[:space:]]*/\t"/' -e 's/$/\\n"/' < "$IN" >> "$OUT"
+sed -e $'s/\r//g' -e 's/["\\]/\\&/g' -e $'s/^[[:space:]]*/\t"/' -e 's/$/\\n"/' < "$IN" >> "$OUT"
 echo ";" >> "$OUT"
 
 exit 0