From 5c4eadb515f393a812a56d86595315fff1edfc34 Mon Sep 17 00:00:00 2001 From: James A Simmons Date: Thu, 2 Sep 2010 09:28:48 +0300 Subject: [PATCH] install.pl: Use 'rpm --nodeps' when '--without-depcheck' passed Signed-off-by: James A Simmons Signed-off-by: Vladimir Sokolovsky --- install.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.pl b/install.pl index 8fe7eb4..526d579 100755 --- a/install.pl +++ b/install.pl @@ -1536,6 +1536,9 @@ $kernel_rel =~ s/-/_/g; if ($distro eq "debian") { $check_linux_deps = 0; +} + +if (not $check_linux_deps) { $rpmbuild_flags .= ' --nodeps'; $rpminstall_flags .= ' --nodeps'; } -- 2.41.0