diff options
author | Steven Tamm <steventamm@mac.com> | 2002-12-02 16:12:45 +0000 |
---|---|---|
committer | Steven Tamm <steventamm@mac.com> | 2002-12-02 16:12:45 +0000 |
commit | c4ea99e1a8fb24d846aaf0ed3163daa29547b2f0 (patch) | |
tree | f06c8cca8be7054f834c66c6ff96052694c05bea /mac | |
parent | ed09af61b0c870fafd31494fcc05225567d1ea54 (diff) | |
download | emacs-c4ea99e1a8fb24d846aaf0ed3163daa29547b2f0.tar.gz |
Switched copying of .el files to be on by default.
Diffstat (limited to 'mac')
-rw-r--r-- | mac/ChangeLog | 5 | ||||
-rwxr-xr-x | mac/make-package | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/mac/ChangeLog b/mac/ChangeLog index add5c00c17e..cd1588cb899 100644 --- a/mac/ChangeLog +++ b/mac/ChangeLog @@ -1,3 +1,8 @@ +2002-12-02 Steven Tamm <steventamm@mac.com> + + * make-package (installprefix): Switched copying of .el files + to be on by default. Removed symlink for emacs -> emacs-version. + 2002-11-30 Steven Tamm <steventamm@mac.com> * make-package: Now compresses .pax file instead of entire disk diff --git a/mac/make-package b/mac/make-package index 9f90144e2c8..7b5c189934a 100755 --- a/mac/make-package +++ b/mac/make-package @@ -54,7 +54,7 @@ with_x=no comp_diskimage=yes self_contained=no app_symlink=no -full_dist=no +full_dist=yes keep_directory=no ac_prev= @@ -83,8 +83,8 @@ do -with-x | --with-x) with_x=yes with_app=no ;; - --with-full-dist | -with-full-dist | -full-dist | -full) - full_dist=yes ;; + --without-full-dist | -without-full-dist | -no-full-dist | -no-full) + full_dist=no ;; -self-contained | --with-self-contained-app | -sc) self_contained=yes ;; -app-symlink | --app-symlink | -symlink | --symlink | --asl) @@ -126,8 +126,8 @@ Options: --with-x Setup the install to use X Windows for its windowed display, instead of carbon. Implies --without-app. - --with-full-dist Include all the .el files in the distribution. - Default is to include only .elc files + --without-full-dist Do not include all the .el files in the distribution. + This is discouraged except if disk space is critical. --app-symlink Have the Emacs.app executable be a symlink to the install in [prefix]/bin/emacs and have the emacs executable link to emacs-${version} |