aboutsummaryrefslogtreecommitdiffstats
path: root/mac
diff options
context:
space:
mode:
authorSteven Tamm2003-04-05 03:11:36 +0000
committerSteven Tamm2003-04-05 03:11:36 +0000
commitafc9c9e4a2cc3864cd9251ef15ff4a5e082069cc (patch)
tree00cebd87661bee01add21a724da380c605596d80 /mac
parent0ed2c9b6d597f69cad6ac7a8d350f94a974920b7 (diff)
downloademacs-afc9c9e4a2cc3864cd9251ef15ff4a5e082069cc.tar.gz
emacs-afc9c9e4a2cc3864cd9251ef15ff4a5e082069cc.zip
Place libexec executables directly under the Contents/MacOS/libexec if
the application is self-contained.
Diffstat (limited to 'mac')
-rw-r--r--mac/ChangeLog5
-rwxr-xr-xmac/make-package4
2 files changed, 8 insertions, 1 deletions
diff --git a/mac/ChangeLog b/mac/ChangeLog
index cee81a13dd2..6798c4f9e29 100644
--- a/mac/ChangeLog
+++ b/mac/ChangeLog
@@ -1,3 +1,8 @@
12003-04-04 Steven Tamm <steventamm@mac.com>
2
3 * make-package: Place libexec executables directly under the
4 Contents/MacOS/libexec if the application is self-contained
5
12003-04-01 Kim F. Storm <storm@cua.dk> 62003-04-01 Kim F. Storm <storm@cua.dk>
2 7
3 * makefile.MPW (frame.c.x): Add dependency on BLOCKINPUT_H_GROUP. 8 * makefile.MPW (frame.c.x): Add dependency on BLOCKINPUT_H_GROUP.
diff --git a/mac/make-package b/mac/make-package
index 5529d8811e4..472df36c36b 100755
--- a/mac/make-package
+++ b/mac/make-package
@@ -313,13 +313,15 @@ if test "$with_app" == "yes"; then
313 fi 313 fi
314fi 314fi
315 315
316compver=powerpc-apple-darwin`uname -r`
317
316if test "$self_contained" = "yes"; then 318if test "$self_contained" = "yes"; then
317 # Move shared files down to Resources directory 319 # Move shared files down to Resources directory
318 mv $installprefix/share/emacs/$version/* $installprefix 320 mv $installprefix/share/emacs/$version/* $installprefix
319 rm -rf $installprefix/share 321 rm -rf $installprefix/share
320 # These directories might remain in Resources 322 # These directories might remain in Resources
321 mv $installprefix/bin $installprefix/../MacOS/bin 323 mv $installprefix/bin $installprefix/../MacOS/bin
322 mv $installprefix/libexec $installprefix/../MacOS/libexec 324 mv $installprefix/libexec/emacs/$version/$compver $installprefix/../MacOS/libexec
323 # Make the application binary a hard link 325 # Make the application binary a hard link
324 rm $installprefix/../MacOS/Emacs 326 rm $installprefix/../MacOS/Emacs
325 ln $installprefix/../MacOS/bin/emacs $installprefix/../MacOS/Emacs 327 ln $installprefix/../MacOS/bin/emacs $installprefix/../MacOS/Emacs