diff options
-rw-r--r-- | config.lib | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config.lib b/config.lib index 40ed96843..4f0d501db 100644 --- a/config.lib +++ b/config.lib @@ -341,7 +341,11 @@ check_params() { check_cxx_build check_cxx_host check_windres - check_strip + if [ "$enable_strip" != "0" ]; then + check_strip + else + log 1 "checking strip... disabled" + fi check_lipo check_makedepend |