nixpkgs/pkgs/development/interpreters/racket/force-remove-codesign-then-add.patch
Weijia Wang 8b868b5616 racket-minimal: fix build on aarch64-darwin
This commit fixed a previous patch so that signatures are effectively removed and then added.
2022-11-29 16:28:06 +01:00

11 lines
185 B
Diff

--- old/src/mac/codesign.rkt
+++ new/src/mac/codesign.rkt
@@ -18,6 +18,6 @@
file))
(void
- (if remove?
+ (begin
(remove-signature file)
(add-ad-hoc-signature file)))