From b0c4d01734b9531915592494498741bb307262c6 Mon Sep 17 00:00:00 2001 From: borisVanhoof Date: Tue, 29 Sep 2020 18:02:08 +0200 Subject: don't pass arguments to ./configure as 1 string (#1027) this causes the following error if there are arguments after --host : 'checking host system type... config.sub: too many arguments' Co-authored-by: sahnalys12 Co-authored-by: Luca Deri --- autogen.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index bda811918..870a08011 100755 --- a/autogen.sh +++ b/autogen.sh @@ -58,4 +58,5 @@ cat configure | sed "s/#define PACKAGE/#define NDPI_PACKAGE/g" | sed "s/#define cat configure.tmp > configure chmod +x configure -./configure ${*} +./configure $@ + -- cgit v1.2.3