[Python-checkins] python/dist/src/Lib/plat-mac bundlebuilder.py,1.5,1.6

jvr@users.sourceforge.net jvr@users.sourceforge.net
Sun, 02 Feb 2003 10:56:40 -0800


Update of /cvsroot/python/python/dist/src/Lib/plat-mac
In directory sc8-pr-cvs1:/tmp/cvs-serv31923

Modified Files:
	bundlebuilder.py 
Log Message:
jeez, now I know why I shouldn't even _want_ to learn sh.

Index: bundlebuilder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/bundlebuilder.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** bundlebuilder.py	1 Feb 2003 08:34:46 -0000	1.5
--- bundlebuilder.py	2 Feb 2003 18:56:37 -0000	1.6
***************
*** 255,265 ****
  #!/bin/sh
  
! execdir=$(dirname ${0})
  executable=${execdir}/%(executable)s
! resdir=$(dirname ${execdir})/Resources
  main=${resdir}/%(mainprogram)s
  PYTHONPATH=$resdir
  export PYTHONPATH
! exec ${executable} ${main} ${1}
  """
  
--- 255,265 ----
  #!/bin/sh
  
! execdir=$(dirname "${0}")
  executable=${execdir}/%(executable)s
! resdir=$(dirname "${execdir}")/Resources
  main=${resdir}/%(mainprogram)s
  PYTHONPATH=$resdir
  export PYTHONPATH
! exec "${executable}" "${main}" "${1}"
  """
  
***************
*** 620,624 ****
        --nib=NAME         main nib name
    -c, --creator=CCCC     4-char creator code (default: '????')
!       --iconfile=FILE	 filename of the icon (an .icns file) to be used
                           as the Finder icon
    -l, --link             symlink files/folder instead of copying them
--- 620,624 ----
        --nib=NAME         main nib name
    -c, --creator=CCCC     4-char creator code (default: '????')
!       --iconfile=FILE    filename of the icon (an .icns file) to be used
                           as the Finder icon
    -l, --link             symlink files/folder instead of copying them