Skip to content

Commit

Permalink
Makefile: fix install permissions for static library
Browse files Browse the repository at this point in the history
  • Loading branch information
olifre committed Aug 29, 2024
1 parent a31f335 commit 644fadc
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 @@ -755,7 +755,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 644fadc

Please sign in to comment.