Change flex.rb to perform `strip -S` on shared libraries correctly

parent 0e7c8ecf
......@@ -11,7 +11,7 @@ class Flex < Package
def self.build
system "./configure", "--with-pic", "--disable-static", "--enable-shared"
system "make"
system "find . -name '*.so' -print | xargs strip -S"
system "find . -name 'lib*.so.*' -print | xargs strip -S"
end
def self.install
......
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