https://github.com/videolan/vlc
Revision c9563144f9e4cc7e43b0b5f710eb9e977cd20656 authored by Thomas Guillem on 10 March 2023, 14:26:12 UTC, committed by Jean-Baptiste Kempf on 12 March 2023, 09:26:44 UTC
sys->as will be set to NULL in case of flush error in the next commit.
1 parent 3fa5113
Raw File
Tip revision: c9563144f9e4cc7e43b0b5f710eb9e977cd20656 authored by Thomas Guillem on 10 March 2023, 14:26:12 UTC
aaudio: assert that "as" is valid after checking the state
Tip revision: c956314
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