Skip to content

Commit

Permalink
Use cp instead of install to copy libs/links to install location
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Jan 16, 2025
1 parent 4d77b8d commit 454ded6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ install-libs:
ifneq ($(wildcard $(LIB)/*),)
@echo "installing libraries to $(DESTDIR)$(libdir)"
install -d $(DESTDIR)$(libdir)
$(INSTALL_PROGRAM) -D $(LIB)/* $(DESTDIR)$(libdir)/
cp $(LIB)/* $(DESTDIR)$(libdir)/
else
@echo "WARNING! Skipping libs install: needs 'shared' and/or 'static'"
endif
Expand Down

0 comments on commit 454ded6

Please sign in to comment.