]> granicus.if.org Git - python/commitdiff
Issue #22471: Avoid Python Launcher.app install problems by removing
authorNed Deily <nad@acm.org>
Tue, 23 Sep 2014 19:54:18 +0000 (12:54 -0700)
committerNed Deily <nad@acm.org>
Tue, 23 Sep 2014 19:54:18 +0000 (12:54 -0700)
vestigial Makefile step.

1  2 
Mac/PythonLauncher/Makefile.in

index 4b4ae62f48dd98a6999406e758297ccb7a66d693,f05efdfbfd70acb7a276974de43bfe781215c496..4c05f26e8358bc3f235cb1c3c4d10f43a606597d
@@@ -39,18 -41,18 +39,17 @@@ Python\ Launcher.app:  Info.plist 
                $(srcdir)/../Icons/PythonCompiled.icns \
                $(srcdir)/factorySettings.plist
        rm -fr "Python Launcher.app"
 -      $(RUNSHARED) $(BUILDPYTHON) $(BUNDLEBULDER) \
 -              --builddir=. \
 -              --name="Python Launcher" \
 -              --executable="Python Launcher" \
 -              --iconfile=$(srcdir)/../Icons/PythonLauncher.icns \
 -              --bundle-id=org.python.PythonLauncher \
 -              --resource=$(srcdir)/../Icons/PythonSource.icns \
 -              --resource=$(srcdir)/../Icons/PythonCompiled.icns \
 -              --resource=$(srcdir)/English.lproj \
 -              --resource=$(srcdir)/factorySettings.plist \
 -              --plist Info.plist \
 -              build
 +      mkdir "Python Launcher.app"
 +      mkdir "Python Launcher.app/Contents"
 +      mkdir "Python Launcher.app/Contents/MacOS"
 +      mkdir "Python Launcher.app/Contents/Resources"
 +      cp "Python Launcher" "Python Launcher.app/Contents/MacOS"
 +      cp Info.plist  "Python Launcher.app/Contents"
 +      cp $(srcdir)/../Icons/PythonLauncher.icns  "Python Launcher.app/Contents/Resources"
 +      cp $(srcdir)/../Icons/PythonSource.icns  "Python Launcher.app/Contents/Resources"
 +      cp $(srcdir)/../Icons/PythonCompiled.icns  "Python Launcher.app/Contents/Resources"
 +      cp $(srcdir)/factorySettings.plist  "Python Launcher.app/Contents/Resources"
 +      cp -R $(srcdir)/English.lproj "Python Launcher.app/Contents/Resources"
-       find "Python Launcher.app" -name '.svn' -print0 | xargs -0 rm -r
  
  FileSettings.o: $(srcdir)/FileSettings.m
        $(CC) $(CFLAGS) -o $@ -c $(srcdir)/FileSettings.m