Browse Source

Fix make install symlinks under some systems, closes #309

tags/1.9.7
falkTX 9 years ago
parent
commit
861e2bf4c1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile View File

@@ -671,7 +671,7 @@ endif
$(DESTDIR)$(LIBDIR)/lv2/carla.lv2 $(DESTDIR)$(LIBDIR)/lv2/carla.lv2


# Link binaries for lv2 plugin # 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; \ $(LINK) $(LIBDIR)/carla/$$i $(DESTDIR)$(LIBDIR)/lv2/carla.lv2/$$i; \
done done
rm -f $(DESTDIR)$(LIBDIR)/lv2/carla.lv2/libcarla_standalone2.* rm -f $(DESTDIR)$(LIBDIR)/lv2/carla.lv2/libcarla_standalone2.*
@@ -698,7 +698,7 @@ ifeq ($(DEFAULT_QT),4)
$(DESTDIR)$(LIBDIR)/vst/carla.vst $(DESTDIR)$(LIBDIR)/vst/carla.vst


# Link binaries for vst plugin # 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; \ $(LINK) $(LIBDIR)/carla/$$i $(DESTDIR)$(LIBDIR)/vst/carla.vst/$$i; \
done done
rm -f $(DESTDIR)$(LIBDIR)/vst/carla.vst/libcarla_standalone2.* rm -f $(DESTDIR)$(LIBDIR)/vst/carla.vst/libcarla_standalone2.*


Loading…
Cancel
Save