Commit 4ec5943c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Take program-transform-name into account when creating vlc symlinks

parent 98919392
......@@ -351,9 +351,10 @@ endif
# Install the symlinks
install-exec-local: install-binPROGRAMS
inst="`echo vlc | sed -e '$(transform)'`" ; \
for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
rm -f "$(DESTDIR)$(bindir)/$$i" && \
ln -sf vlc "$(DESTDIR)$(bindir)/$$i" ; \
ln -sf "$${inst}" "$(DESTDIR)$(bindir)/$$i" ; \
fi ; done
# the opposite of install-{data,exec}-local
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment