XQuartz: Move our logs into an X11 subdirectory
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
parent
df327f98f6
commit
87939bf831
|
@ -56,6 +56,7 @@
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
#include <sys/syslimits.h>
|
#include <sys/syslimits.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -650,9 +651,14 @@ OsVendorInit(void)
|
||||||
char *home = getenv("HOME");
|
char *home = getenv("HOME");
|
||||||
|
|
||||||
assert(home);
|
assert(home);
|
||||||
assert(0 <
|
|
||||||
asprintf(&lf, "%s/Library/Logs/%s.X11.log", home,
|
/* Ignore errors. If EEXIST, we don't care. If anything else,
|
||||||
bundle_id_prefix));
|
* LogInit will handle it for us.
|
||||||
|
*/
|
||||||
|
(void)mkdir(lf, S_IRWXU | S_IRWXG | S_IRWXO);
|
||||||
|
free(lf);
|
||||||
|
|
||||||
|
assert(0 < asprintf(&lf, "%s/Library/Logs/X11/%s.log", home, bundle_id_prefix));
|
||||||
LogInit(lf, ".old");
|
LogInit(lf, ".old");
|
||||||
free(lf);
|
free(lf);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue