Staging
v0.5.1
Revision d55cd9921fd16e612eaa20d614650bf96b4dfd38 authored by Filip Roséen on 04 March 2016, 16:04:08 UTC, committed by Jean-Baptiste Kempf on 05 March 2016, 21:14:03 UTC
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
1 parent 18021cd
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