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 05fecba commit 14eb380
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 @@ -161,7 +161,7 @@ install-libs:
ifneq ($(wildcard $(LIB)/*),)
@echo "installing libraries to $(DESTDIR)$(libdir)"
install -d $(DESTDIR)$(libdir)
$(INSTALL_PROGRAM) -D $(LIB)/lib*.so* $(DESTDIR)$(libdir)/
cp $(LIB)/lib*.so* $(DESTDIR)$(libdir)/
else
@echo "WARNING! Skipping libs install: needs 'shared' and/or 'static'"
endif
Expand Down

0 comments on commit 14eb380

Please sign in to comment.