Staging
v0.5.1
Revision fc393f44e51bd448c36cfad5f36c1b32851df21d authored by Filip Roséen on 09 March 2016, 11:50:03 UTC, committed by Jean-Baptiste Kempf on 09 March 2016, 11:58:11 UTC
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
1 parent 6487b49
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