From 4ec5943cb3cc86dc97d84213ad121710e6196a0e Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Thu, 21 Dec 2006 18:18:08 +0000 Subject: [PATCH] Take program-transform-name into account when creating vlc symlinks --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index d3b5084f4e..d4189d1c9c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 -- 2.39.2