From 423429bb7cf5fdef6e0cfb7bd0baf28ed6efb4e2 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Mon, 27 Nov 2023 13:45:19 +0100 Subject: [PATCH] Fix deb flag --- nginx-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx-build.sh b/nginx-build.sh index 125d0e3..1495311 100755 --- a/nginx-build.sh +++ b/nginx-build.sh @@ -1174,7 +1174,7 @@ _configure_nginx() { echo "Build nginx with ./configure \ ${NGX_NAXSI} \ --with-cc-opt='$DEB_CFLAGS' \ - --with-ld-opt='$DEB_LFLAGS,-lpcre' \ + --with-ld-opt='$DEB_LFLAGS, -lpcre' \ $NGINX_BUILD_OPTIONS \ --build='VirtuBox Nginx-ee' \ $NGX_USER \ @@ -1198,7 +1198,7 @@ _configure_nginx() { bash -c "./configure \ ${NGX_NAXSI} \ --with-cc-opt='$DEB_CFLAGS' \ - --with-ld-opt='$DEB_LFLAGS,-lpcre' \ + --with-ld-opt='$DEB_LFLAGS, -lpcre' \ $NGINX_BUILD_OPTIONS \ --build='VirtuBox Nginx-ee' \ $NGX_USER \