https://github.com/videolan/vlc
Revision 7abc4fee7cf2df2c306a6ac6f497e4ce2065ae9e authored by Rafaël Carré on 26 November 2011, 18:01:41 UTC, committed by Rafaël Carré on 26 November 2011, 18:02:03 UTC
1 parent b1e7c0e
Raw File
Tip revision: 7abc4fee7cf2df2c306a6ac6f497e4ce2065ae9e authored by Rafaël Carré on 26 November 2011, 18:01:41 UTC
ncurses: parallel build is broken, force make -j1
Tip revision: 7abc4fe
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