this repo has no description
1
fork

Configure Feed

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

Create /var/tmp, because GNUstep wants it

+5 -1
+5 -1
src/dyld/darling.c
··· 690 690 snprintf(path, sizeof(path), "%s/usr/local/share", prefix); 691 691 createDir(path); 692 692 693 - // ... and to install plists to /var/db 693 + // ... to install plists to /var/db, 694 694 snprintf(path, sizeof(path), "%s/private", prefix); 695 695 createDir(path); 696 696 snprintf(path, sizeof(path), "%s/private/var", prefix); 697 697 createDir(path); 698 698 snprintf(path, sizeof(path), "%s/private/var/db", prefix); 699 + createDir(path); 700 + 701 + // ... and we need /var/tmp for GNUstep 702 + snprintf(path, sizeof(path), "%s/private/var/tmp", prefix); 699 703 createDir(path); 700 704 701 705 seteuid(0);