Staging
v0.5.1
Revision bfb5a9ccb1678a3a441b44f5bad535620843238a authored by Steve Lhomme on 08 March 2016, 13:52:09 UTC, committed by Jean-Baptiste Kempf on 08 March 2016, 13:58:46 UTC
fixes #16686

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
1 parent ca3e55c
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