Staging
v0.5.1
Revision fcedf52d5f01b76fb213ee45716e5d25a5b40829 authored by Michael Tänzer on 04 March 2016, 20:45:44 UTC, committed by Jean-Baptiste Kempf on 07 March 2016, 13:07:47 UTC
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
1 parent 37a9c77
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