Skip to content

Commit 9abf0eb

Browse files
committed
Revert "remove statics libs not needed after the build"
1 parent a85539c commit 9abf0eb

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

configs/components/augeas.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139

140140

141141
pkg.configure do
142-
["./configure #{extra_config_flags} --prefix=#{settings[:prefix]} #{settings[:host]} --disable-static"]
142+
["./configure #{extra_config_flags} --prefix=#{settings[:prefix]} #{settings[:host]}"]
143143
end
144144

145145
pkg.build do

configs/components/curl.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
end
6060

6161
configure_options = []
62-
configure_options << "--with-ssl=#{settings[:prefix]} --without-libpsl --disable-static"
62+
configure_options << "--with-ssl=#{settings[:prefix]} --without-libpsl"
6363

6464
# OpenSSL version 3.0 & up no longer ships by default the insecure algorithms
6565
# that curl's ntlm module depends on (md4 & des).

configs/components/libyaml.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@
5050
pkg.install do
5151
[
5252
"#{platform[:make]} VERBOSE=1 -j$(shell expr $(shell #{platform[:num_cores]}) + 1) install",
53-
"rm -rf #{settings[:datadir]}/doc/#{pkg.get_name}*",
54-
"rm -f #{settings[:libdir]}/*.{la,a}"
53+
"rm -rf #{settings[:datadir]}/doc/#{pkg.get_name}*"
5554
]
5655
end
5756
end

configs/components/openssl-3.0.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@
185185
# Skip man and html docs
186186
install_commands << "#{platform[:make]} #{install_prefix} install_sw install_ssldirs"
187187
install_commands << "rm -f #{settings[:prefix]}/bin/c_rehash"
188-
install_commands << "rm -f #{settings[:libdir]}/*.{la,a}"
189188

190189
pkg.install do
191190
install_commands

0 commit comments

Comments
 (0)