Revision 3cbc233660b0a31114072c012122d73b80dfcbb9 authored by Petri Hintukainen on 01 March 2016, 08:34:22 UTC, committed by Petri Hintukainen on 10 March 2016, 08:16:27 UTC
Only last created service browser was stored.
avahi_client_free() should free also all service browsers.
1 parent d6b6f0f
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