Skip to content

Commit 424e8ee

Browse files
committed
Use the target library suffix for installing
1 parent c52326b commit 424e8ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/Fogpad/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ endif
152152
ifeq ($(BUILD_LV2),true)
153153
@mkdir -p -m 755 $(DESTDIR)$(LV2_DIR)/$(NAME).lv2
154154
@install -m 644 $(TARGET_DIR)/$(NAME).lv2/*.ttl $(DESTDIR)$(LV2_DIR)/$(NAME).lv2
155-
@install -m 755 $(TARGET_DIR)/$(NAME).lv2/*.so $(DESTDIR)$(LV2_DIR)/$(NAME).lv2
155+
@install -m 755 $(TARGET_DIR)/$(NAME).lv2/*$(LIB_EXT) $(DESTDIR)$(LV2_DIR)/$(NAME).lv2
156156
endif
157157
ifeq ($(BUILD_JACK),true)
158158
ifeq ($(HAVE_JACK),true)
@@ -183,7 +183,7 @@ endif
183183
ifeq ($(BUILD_LV2),true)
184184
@mkdir -p -m 755 $(USER_LV2_DIR)/$(NAME).lv2
185185
@install -m 644 $(TARGET_DIR)/$(NAME).lv2/*.ttl $(USER_LV2_DIR)/$(NAME).lv2
186-
@install -m 755 $(TARGET_DIR)/$(NAME).lv2/*.so $(USER_LV2_DIR)/$(NAME).lv2
186+
@install -m 755 $(TARGET_DIR)/$(NAME).lv2/*$(LIB_EXT) $(USER_LV2_DIR)/$(NAME).lv2
187187
endif
188188
ifeq ($(BUILD_JACK),true)
189189
ifeq ($(HAVE_JACK),true)

0 commit comments

Comments
 (0)