https://github.com/videolan/vlc
Revision 0a33447a72c8b2aefcfc9af2a9e1d53306cff3e8 authored by Alexandre Janniaux on 27 January 2021, 12:00:23 UTC, committed by Marvin Scholz on 15 November 2022, 22:07:27 UTC
(cherry picked from commit 7eb922bcb2cb9b4a023597a25871074c6fd9e42a)
Signed-off-by: Marvin Scholz <epirat07@gmail.com>
1 parent cacf92f
Raw File
Tip revision: 0a33447a72c8b2aefcfc9af2a9e1d53306cff3e8 authored by Alexandre Janniaux on 27 January 2021, 12:00:23 UTC
configure.ac: fix deprecated mention with newer autoconf
Tip revision: 0a33447
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