From d66679c2ec6dc93842c1dc6866bb6e7aaf2ec41c Mon Sep 17 00:00:00 2001 From: Vladimir Sokolovsky Date: Wed, 20 Aug 2008 18:07:19 +0300 Subject: [PATCH] check for static libraries RPMs and uninstall if exist. Signed-off-by: Vladimir Sokolovsky --- install.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.pl b/install.pl index e81c98a..51255b2 100755 --- a/install.pl +++ b/install.pl @@ -3739,6 +3739,10 @@ sub uninstall $cmd .= " $package"; $cnt ++; } + if (is_installed("$package-static")) { + $cmd .= " $package-static"; + $cnt ++; + } } if ($cnt) { print "Running $cmd\n" if (not $quiet); -- 2.46.0