Staging
v0.5.1
Revision 0503738098d7585573cd2fb0710af2804bc387fa authored by Filip Roséen on 08 March 2016, 14:11:54 UTC, committed by Jean-Baptiste Kempf on 08 March 2016, 16:51:49 UTC
Introduced `EbmlTypeDispatcher` to the functions in question, making
them more readable (as well as faster). This commit is a very good
example of how the new header `Ebml_dispatcher.hpp` allows for better
and faster code.

Also removed some legacy code that has been disabled due to, by
matroska, deprecated types.
1 parent 421416d
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