Skip to content

Commit

Permalink
Fix 'install' make target
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
  • Loading branch information
SpotlightKid committed Oct 15, 2019
1 parent fa41d87 commit 159d047
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/MIDICCRecorder/Makefile
Expand Up @@ -89,9 +89,11 @@ ifeq ($(BUILD_LV2),true)
@install -dm755 $(DESTDIR)$(LV2_DIR) && \
cp -rf $(TARGET_DIR)/$(NAME).lv2 $(DESTDIR)$(LV2_DIR)
endif
ifeq ($(BUILD_JACK),true)
ifeq ($(HAVE_JACK),true)
@install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) -t $(DESTDIR)$(BINDIR)
endif
endif

install-user: all
ifeq ($(BUILD_DSSI),true)
Expand Down
2 changes: 2 additions & 0 deletions plugins/MIDIPBToCC/Makefile
Expand Up @@ -89,9 +89,11 @@ ifeq ($(BUILD_LV2),true)
@install -dm755 $(DESTDIR)$(LV2_DIR) && \
cp -rf $(TARGET_DIR)/$(NAME).lv2 $(DESTDIR)$(LV2_DIR)
endif
ifeq ($(BUILD_JACK),true)
ifeq ($(HAVE_JACK),true)
@install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) -t $(DESTDIR)$(BINDIR)
endif
endif

install-user: all
ifeq ($(BUILD_DSSI),true)
Expand Down
2 changes: 2 additions & 0 deletions plugins/MIDISysFilter/Makefile
Expand Up @@ -89,9 +89,11 @@ ifeq ($(BUILD_LV2),true)
@install -dm755 $(DESTDIR)$(LV2_DIR) && \
cp -rf $(TARGET_DIR)/$(NAME).lv2 $(DESTDIR)$(LV2_DIR)
endif
ifeq ($(BUILD_JACK),true)
ifeq ($(HAVE_JACK),true)
@install -Dm755 $(TARGET_DIR)/$(NAME)$(APP_EXT) -t $(DESTDIR)$(BINDIR)
endif
endif

install-user: all
ifeq ($(BUILD_DSSI),true)
Expand Down

0 comments on commit 159d047

Please sign in to comment.