Commit 8f3a2c2a authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #730 from thedamian/master

removing the @@debug_symbol line that was preventing updating
parents e9ca742a 774f3a6d
......@@ -18,14 +18,14 @@ class Python27 < Package
system "make"
# strip debug symbols from library
system "find . -name '*.so' -print | xargs strip -S" unless @@debug_symbol
system "find . -name '*.so' -print | xargs strip -S" #unless @@debug_symbol
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
# strip binary
system "strip", "#{CREW_DEST_DIR}/usr/local/bin/python2" unless @@debug_symbol
system "strip", "#{CREW_DEST_DIR}/usr/local/bin/python2" #unless @@debug_symbol
# remove static library
system "find #{CREW_DEST_DIR}/usr/local -name 'libpython*.a' -print | xargs rm"
......
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