diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-07-19 23:46:10 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-07-19 23:49:31 -0700 |
commit | a0b8dacbc016e38c92300ed421850e11848b8454 (patch) | |
tree | 1f06789a2edeb47dc74308c483d7e1a87382f1a9 | |
parent | 9b02eb8df6e991d162281e1a8d123b8ac9847d5e (diff) |
XQuartz: Adjust BUNDLE_ID_PREFIX to LAUNCHD_ID_PREFIX for server-1.10-branch
Default builds will fail due to BUNDLE_ID_PREFIX not being defined. LAUNCHD_ID_PREFIX
was used in 1.10.x and earlier.
This was fallout from 55ef10975e2e543ff99f7a75dd65722dc96ff873.
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
-rw-r--r-- | hw/xquartz/X11Application.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xquartz/X11Application.m b/hw/xquartz/X11Application.m index d509870f5..8762dee5b 100644 --- a/hw/xquartz/X11Application.m +++ b/hw/xquartz/X11Application.m @@ -1002,7 +1002,7 @@ void X11ApplicationMain (int argc, char **argv, char **envp) { if (app_prefs_domain_cfstr == NULL) { ErrorF("X11ApplicationMain: Unable to determine bundle identifier. Your installation of XQuartz may be broken.\n"); - app_prefs_domain_cfstr = @BUNDLE_ID_PREFIX".X11"; + app_prefs_domain_cfstr = @LAUNCHD_ID_PREFIX".X11"; } [NSApp read_defaults]; |