diff options
| author | Steven Tamm | 2003-04-08 16:11:37 +0000 |
|---|---|---|
| committer | Steven Tamm | 2003-04-08 16:11:37 +0000 |
| commit | e8f25745658d1226ccde6b5ae2f7eceaeda74446 (patch) | |
| tree | 00c8ee28f7d79b3b4aa576f94a9991ccf3a70785 /src/mac.c | |
| parent | 7c08684536d59c03eea4863bd51f0d193f2749cb (diff) | |
| download | emacs-e8f25745658d1226ccde6b5ae2f7eceaeda74446.tar.gz emacs-e8f25745658d1226ccde6b5ae2f7eceaeda74446.zip | |
mac.c (init_mac_osx_environment): Switch libexec and bin so that self-
cohntained application find libexec files.
Diffstat (limited to 'src/mac.c')
| -rw-r--r-- | src/mac.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -2931,12 +2931,12 @@ init_mac_osx_environment () | |||
| 2931 | q[0] = '\0'; | 2931 | q[0] = '\0'; |
| 2932 | 2932 | ||
| 2933 | strcpy (p, app_bundle_pathname); | 2933 | strcpy (p, app_bundle_pathname); |
| 2934 | strcat (p, "/Contents/MacOS/bin"); | 2934 | strcat (p, "/Contents/MacOS/libexec"); |
| 2935 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) | 2935 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) |
| 2936 | strcat (q, p); | 2936 | strcat (q, p); |
| 2937 | 2937 | ||
| 2938 | strcpy (p, app_bundle_pathname); | 2938 | strcpy (p, app_bundle_pathname); |
| 2939 | strcat (p, "/Contents/MacOS/libexec"); | 2939 | strcat (p, "/Contents/MacOS/bin"); |
| 2940 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) | 2940 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) |
| 2941 | { | 2941 | { |
| 2942 | if (q[0] != '\0') | 2942 | if (q[0] != '\0') |