Revision c8d93f1f5fc8f9c3d2ede50b6efc6f58f933144f authored by Jean-Baptiste Kempf on 10 March 2016, 15:31:56 UTC, committed by Jean-Baptiste Kempf on 10 March 2016, 15:35:01 UTC
This is a move from 3.2 to 3.3.
EGD is reactivated
1 parent 29c5c69
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