python: remove unnecessary mkpath

master
Jack Nagel 2014-03-31 15:11:50 -05:00
parent 8111ba23f9
commit 4cf465aeb1
2 changed files with 0 additions and 2 deletions

View File

@ -115,7 +115,6 @@ class Python < Formula
# Tell Python not to install into /Applications (default for framework builds) # Tell Python not to install into /Applications (default for framework builds)
system "make", "install", "PYTHONAPPSDIR=#{prefix}" system "make", "install", "PYTHONAPPSDIR=#{prefix}"
# Demos and Tools # Demos and Tools
(HOMEBREW_PREFIX/'share/python').mkpath
system "make", "frameworkinstallextras", "PYTHONAPPSDIR=#{share}/python" system "make", "frameworkinstallextras", "PYTHONAPPSDIR=#{share}/python"
system "make", "quicktest" if build.include? 'quicktest' system "make", "quicktest" if build.include? 'quicktest'

View File

@ -101,7 +101,6 @@ class Python3 < Formula
# Tell Python not to install into /Applications (default for framework builds) # Tell Python not to install into /Applications (default for framework builds)
system "make", "install", "PYTHONAPPSDIR=#{prefix}" system "make", "install", "PYTHONAPPSDIR=#{prefix}"
# Demos and Tools # Demos and Tools
(HOMEBREW_PREFIX/'share/python3').mkpath
system "make", "frameworkinstallextras", "PYTHONAPPSDIR=#{share}/python3" system "make", "frameworkinstallextras", "PYTHONAPPSDIR=#{share}/python3"
system "make", "quicktest" if build.include? "quicktest" system "make", "quicktest" if build.include? "quicktest"