Revision 7ce220a7899fe4311ce5d786a919c7774ed9c4be authored by Francois Cartegnie on 06 March 2016, 16:54:17 UTC, committed by Francois Cartegnie on 06 March 2016, 20:13:43 UTC
TS 101 211, undefined status event should
be handled as running.

Should fix channels without real event status
like France 5
1 parent 8521672
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