comparison mac/make-package @ 48605:a3fe4bde49d3

Removing unnecessary symlink from emacs -> emacs-version
author Steven Tamm <steventamm@mac.com>
date Sat, 30 Nov 2002 23:43:51 +0000
parents ac86b769c135
children d78591287910
comparison
equal deleted inserted replaced
48604:8212b823a5d1 48605:a3fe4bde49d3
253 echo "Removing unneeded .el files" 253 echo "Removing unneeded .el files"
254 sharedir=$installprefix/share/emacs/$version 254 sharedir=$installprefix/share/emacs/$version
255 find $sharedir/lisp $sharedir/leim -name "*.elc" -print | sed 's|\(.*\)\.elc$|/bin/rm -f \1.el|' | /bin/sh -s 255 find $sharedir/lisp $sharedir/leim -name "*.elc" -print | sed 's|\(.*\)\.elc$|/bin/rm -f \1.el|' | /bin/sh -s
256 fi 256 fi
257 257
258 if test "$app_symlink" == "yes"; then
259 echo "Replacing bin/emacs with a symbolic link..."
260 # Fix emacs symlink
261 rm ${installprefix}/bin/emacs
262 ln -s $emacsname ${installprefix}/bin/emacs
263 fi
264
265 if test "$with_app" == "yes"; then 258 if test "$with_app" == "yes"; then
266 echo "Creating Emacs.app application" 259 echo "Creating Emacs.app application"
267 tempappdir=${tempparentfull}${appsdir} 260 tempappdir=${tempparentfull}${appsdir}
268 mkdir ${tempappdir} 261 mkdir ${tempappdir}
269 262