Commit 47b96456 authored by lovedheart's avatar lovedheart Committed by GitHub

Update pango.rb

 "pip install --prefix #{CREW_PREFIX} --root #{CREW_DEST_DIR} six" does not work.  six packages not found.
Fix this error using normal installation of six in python
parent 6f1064b7
...@@ -22,7 +22,8 @@ class Pango < Package ...@@ -22,7 +22,8 @@ class Pango < Package
end end
def self.install def self.install
system "pip install --prefix #{CREW_PREFIX} --root #{CREW_DEST_DIR} six" system "pip install six" # fix installation error, "pip install --prefix #{CREW_PREFIX} --root #{CREW_DEST_DIR} six" does not work
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install" system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
system "pip uninstall --yes six"
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment