From 6beaf741b35a2eed3db80e9bfcc0973dc0135094 Mon Sep 17 00:00:00 2001 From: Pavel Odintsov Date: Mon, 3 Aug 2015 10:26:41 +0200 Subject: [PATCH] Switch to system call for debig --- src/fastnetmon_install.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fastnetmon_install.pl b/src/fastnetmon_install.pl index e4846f5..6a81493 100755 --- a/src/fastnetmon_install.pl +++ b/src/fastnetmon_install.pl @@ -232,8 +232,8 @@ sub install_ndpi { } print "Configure nDPI\n"; - `./autogen.sh`; - `./configure --prefix=/opt/ndpi`; + system("./autogen.sh"); + system("./configure --prefix=/opt/ndpi"); if ($? != 0) { print "Configure failed\n";