Skip to content

Commit

Permalink
don't include binary in LV2DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
x42 committed Feb 17, 2016
1 parent 2f2c7f7 commit 3f5ba47
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Expand Up @@ -286,8 +286,14 @@ uninstall-man:
install-lv2: all
ifneq ($(targets),)
install -d $(DESTDIR)$(LV2DIR)/$(BUNDLE)
install -m755 $(targets) $(DESTDIR)$(LV2DIR)/$(BUNDLE)
install -m644 $(BUILDDIR)manifest.ttl $(BUILDDIR)$(LV2NAME).ttl $(DESTDIR)$(LV2DIR)/$(BUNDLE)
install -m755 $(BUILDDIR)$(LV2NAME)$(LIB_EXT) $(DESTDIR)$(LV2DIR)/$(BUNDLE)
ifneq ($(BUILDOPENGL), no)
install -m755 $(BUILDDIR)$(LV2GUI)$(LIB_EXT) $(DESTDIR)$(LV2DIR)/$(BUNDLE)
endif
ifneq ($(BUILDGTK), no)
install -m755 $(BUILDDIR)$(LV2GTK)$(LIB_EXT) $(DESTDIR)$(LV2DIR)/$(BUNDLE)
endif
endif

uninstall-lv2:
Expand Down

0 comments on commit 3f5ba47

Please sign in to comment.