Staging
v0.5.1
Revision e29200cb8858f69d08fc2a9d9929aa309afb164d authored by Steve Lhomme on 08 March 2016, 15:45:20 UTC, committed by Jean-Baptiste Kempf on 08 March 2016, 16:51:49 UTC
fixes a crash similar to #16686 when an RGB output is used instead of YUYV

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
1 parent ffcc062
Raw File
make-alias
#! /bin/sh
# Interface alias build script for VLC
# Copyright © 2007 Rémi Denis-Courmont.

OUT="$1"
IFACE="$2"

cat > "$OUT.tmp" << EOF
#! /bin/sh
exec $bindir/`echo "$program_prefix"vlc"$program_suffix" | sed -e "$transform"` -I "$IFACE" "\$@"
EOF

chmod +x "$OUT.tmp"
mv -f -- "$OUT.tmp" "$OUT"
back to top