this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Codesign stub (#424)

+10 -1
+2 -1
src/tools/CMakeLists.txt
··· 2 2 3 3 add_darling_executable(sw_vers sw_vers.c) 4 4 add_darling_executable(sudo sudo.c) 5 + add_darling_executable(codesign codesign.c) 5 6 6 - install(TARGETS sw_vers sudo DESTINATION libexec/darling/usr/bin) 7 + install(TARGETS sw_vers sudo codesign DESTINATION libexec/darling/usr/bin) 7 8 target_link_libraries(sw_vers CoreFoundation)
+8
src/tools/codesign.c
··· 1 + #include <stdio.h> 2 + 3 + int main(int argc, char *argv[]) 4 + { 5 + printf("%s DID NOT ACTUALLY VERIFY THE SIGNATURE OF ANY CODE " 6 + "THIS IS JUST A STUB\n", argv[0]); 7 + return 0; 8 + }