You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you very much for the sigtool addition!
Just a small remark, it fails to sign files with spaces.
In file /cctools/include/stuff/port.h
On line 60:
snprintf(codesign_command, sizeof(codesign_command), "%s -s - -f %s", codesign, filename);
Can be replaced with something like (quotes added):
snprintf(codesign_command, sizeof(codesign_command), "%s -s - -f '%s'", codesign, filename); \
The text was updated successfully, but these errors were encountered:
Hi,
thanks for the hint. I think it should be replaced by execvp or something similar to get rid of the issue. Adding quotes doesn't fix the issue entirely. The entire macro needs some rework. There seem to be some obvious bugs.
Hi,
Thank you very much for the sigtool addition!
Just a small remark, it fails to sign files with spaces.
In file /cctools/include/stuff/port.h
On line 60:
snprintf(codesign_command, sizeof(codesign_command), "%s -s - -f %s", codesign, filename);
Can be replaced with something like (quotes added):
snprintf(codesign_command, sizeof(codesign_command), "%s -s - -f '%s'", codesign, filename); \
The text was updated successfully, but these errors were encountered: