From 95c473d91fed983faebb2eb95b25a2bac2547fa0 Mon Sep 17 00:00:00 2001 From: Kay Marquardt Date: Mon, 16 Dec 2019 17:18:39 +0100 Subject: [PATCH] fix module detection on windows --- setup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.pl b/setup.pl index e0a4a3c6b..0f842d995 100755 --- a/setup.pl +++ b/setup.pl @@ -236,7 +236,7 @@ else { if (!&has_command("process.exe")) { &errorexit("The command process.exe must be installed to run Webmin on Windows"); } - if (! eval "use Win32::Daemon; 1") { + if (eval "use Win32::Daemon; 1") { &errorexit("The Perl module Win32::Daemon must be installed to run Webmin on Windows"); } }