From: Ned Deily Date: Tue, 23 Sep 2014 19:54:18 +0000 (-0700) Subject: Issue #22471: Avoid Python Launcher.app install problems by removing X-Git-Tag: v3.5.0a1~869^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=945b21535ac3a6a288adbe0df580c81668771109;p=python Issue #22471: Avoid Python Launcher.app install problems by removing vestigial Makefile step. --- 945b21535ac3a6a288adbe0df580c81668771109 diff --cc Mac/PythonLauncher/Makefile.in index 4b4ae62f48,f05efdfbfd..4c05f26e83 --- a/Mac/PythonLauncher/Makefile.in +++ b/Mac/PythonLauncher/Makefile.in @@@ -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