Build pip with python2

There was a typo in the configure command so it did not build pip.
This commit is contained in:
Kriskras99
2017-04-24 20:57:17 +02:00
committed by GitHub
parent 3282ab3be3
commit 97c24c53a4

View File

@@ -10,7 +10,7 @@ class Python27 < Package
depends_on 'openssl'
def self.build # self.build contains commands needed to build the software from source
system "./configure --prefix=/usr/local CPPFLAGS=\"-I/usr/local/include -I/usr/local/include/ncurses\" LDFLAGS=\"-L/usr/local/lib\" CFLAGS=\" -fPIC\" --with-ensure-pip=install"
system "./configure --prefix=/usr/local CPPFLAGS=\"-I/usr/local/include -I/usr/local/include/ncurses\" LDFLAGS=\"-L/usr/local/lib\" CFLAGS=\" -fPIC\" --with-ensurepip=install"
system "make" # ordered chronologically
end