From: Steven Tamm Date: Sat, 5 Apr 2003 03:11:36 +0000 (+0000) Subject: Place libexec executables directly under the Contents/MacOS/libexec if X-Git-Tag: ttn-vms-21-2-B4~10631 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=afc9c9e4a2cc3864cd9251ef15ff4a5e082069cc;p=emacs.git Place libexec executables directly under the Contents/MacOS/libexec if the application is self-contained. --- diff --git a/mac/ChangeLog b/mac/ChangeLog index cee81a13dd2..6798c4f9e29 100644 --- a/mac/ChangeLog +++ b/mac/ChangeLog @@ -1,3 +1,8 @@ +2003-04-04 Steven Tamm + + * make-package: Place libexec executables directly under the + Contents/MacOS/libexec if the application is self-contained + 2003-04-01 Kim F. Storm * 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 fi fi +compver=powerpc-apple-darwin`uname -r` + if test "$self_contained" = "yes"; then # Move shared files down to Resources directory mv $installprefix/share/emacs/$version/* $installprefix rm -rf $installprefix/share # These directories might remain in Resources mv $installprefix/bin $installprefix/../MacOS/bin - mv $installprefix/libexec $installprefix/../MacOS/libexec + mv $installprefix/libexec/emacs/$version/$compver $installprefix/../MacOS/libexec # Make the application binary a hard link rm $installprefix/../MacOS/Emacs ln $installprefix/../MacOS/bin/emacs $installprefix/../MacOS/Emacs