diff options
author | borisVanhoof <vanhoof.boris@gmail.com> | 2020-09-29 18:02:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 18:02:08 +0200 |
commit | b0c4d01734b9531915592494498741bb307262c6 (patch) | |
tree | 5cdcb435b53036a64b6647fc6299619b4083387d /autogen.sh | |
parent | 2c1b7cf1bd8954bc236c2bacc2604d7238444cbf (diff) |
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 <boris.vanhoof_ext@softathome.com>
Co-authored-by: Luca Deri <lucaderi@users.noreply.github.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 3 |
1 files changed, 2 insertions, 1 deletions
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 $@ + |