https://github.com/videolan/vlc
Revision f7a8bc79b12a3f2a673d0b6a2a6bf4ef4b5e1d2d authored by Laurent Aimar on 07 May 2009, 21:13:32 UTC, committed by Laurent Aimar on 07 May 2009, 22:28:09 UTC
1 parent 816e1cd
Raw File
Tip revision: f7a8bc79b12a3f2a673d0b6a2a6bf4ef4b5e1d2d authored by Laurent Aimar on 07 May 2009, 21:13:32 UTC
Simplify and fix the block flag test in dirac packetizer.
Tip revision: f7a8bc7
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