Skip to content

Commit

Permalink
Merge pull request #592 from olifre/staticlib-installperms
Browse files Browse the repository at this point in the history
Makefile: fix install permissions for static library
  • Loading branch information
zachmann authored Aug 30, 2024
2 parents 2c6a3c5 + 644fadc commit 84264a8
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 @@ -752,7 +752,7 @@ $(INCLUDE_PATH)/oidc-agent/oidc_error.h: $(SRCDIR)/utils/oidc_error.h $(INCLUDE_
@install -p -m 644 $< $@

$(LIBDEV_PATH)/liboidc-agent.a: $(APILIB)/liboidc-agent.a $(LIBDEV_PATH)
@install -p $< $@
@install -p -m 644 $< $@

endif

Expand Down

0 comments on commit 84264a8

Please sign in to comment.