From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] bison: Proper use LDFLAGS to link liby Date: Sat, 11 Mar 2023 13:53:17 +0100 Message-ID: <20230311125317.96540-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1831897425145108404==" List-Id: --===============1831897425145108404== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Stefan Schantl --- bison/bison.nm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bison/bison.nm b/bison/bison.nm index 96d0ed331..3a8665a0c 100644 --- a/bison/bison.nm +++ b/bison/bison.nm @@ -5,7 +5,7 @@ name = bison version = 3.8.2 -release = 1 +release = 2 groups = Development/Tools url = http://www.gnu.org/software/bison/ @@ -32,7 +32,7 @@ build build_cmds cd lib - gcc -shared -Wl,-soname,liby.so.%{version} \ + gcc %{LDFLAGS} -shared -Wl,-soname,liby.so.%{version} \ -o liby.so.%{version} %{CFLAGS} main.o yyerror.o end -- 2.30.2 --===============1831897425145108404==--