From 861e2bf4c16deafb0ab2b3153956bbe4468a179e Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 9 Oct 2015 14:00:26 +0200 Subject: [PATCH] Fix make install symlinks under some systems, closes #309 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2773e9c7d..3ee996338 100644 --- a/Makefile +++ b/Makefile @@ -671,7 +671,7 @@ endif $(DESTDIR)$(LIBDIR)/lv2/carla.lv2 # Link binaries for lv2 plugin - @for i in $(shell find $(DESTDIR)$(LIBDIR)/carla/ -maxdepth 1 -type f -exec basename {} ';'); do \ + @for i in `find $(DESTDIR)$(LIBDIR)/carla/ -maxdepth 1 -type f -exec basename {} ';'`; do \ $(LINK) $(LIBDIR)/carla/$$i $(DESTDIR)$(LIBDIR)/lv2/carla.lv2/$$i; \ done rm -f $(DESTDIR)$(LIBDIR)/lv2/carla.lv2/libcarla_standalone2.* @@ -698,7 +698,7 @@ ifeq ($(DEFAULT_QT),4) $(DESTDIR)$(LIBDIR)/vst/carla.vst # Link binaries for vst plugin - @for i in $(shell find $(DESTDIR)$(LIBDIR)/carla/ -maxdepth 1 -type f -exec basename {} ';'); do \ + @for i in `find $(DESTDIR)$(LIBDIR)/carla/ -maxdepth 1 -type f -exec basename {} ';'`; do \ $(LINK) $(LIBDIR)/carla/$$i $(DESTDIR)$(LIBDIR)/vst/carla.vst/$$i; \ done rm -f $(DESTDIR)$(LIBDIR)/vst/carla.vst/libcarla_standalone2.*