From 340bfa03e48e1d44406b15bf3177add0933f2429 Mon Sep 17 00:00:00 2001 From: Russ Tyndall Date: Tue, 10 Jun 2014 11:26:09 -0400 Subject: [PATCH] fixed the broken mysql LDFLAGS in debian db-mysql still doesnt build, but the ld command is no longer throwing errors about invalid parameters -Wl,-z,relro --- db-mysql/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db-mysql/Makefile b/db-mysql/Makefile index 3a497c1..604aac5 100644 --- a/db-mysql/Makefile +++ b/db-mysql/Makefile @@ -38,7 +38,7 @@ ifneq ($(OS_CYGWIN),0) endif ifneq ($(OS_DPKG_BUILDFLAGS),0) CFLAGS:=$(CFLAGS) $(shell dpkg-buildflags --get CFLAGS) - LDFLAGS:=$(LDFLAGS) $(shell dpkg-buildflags --get LDFLAGS | sed "/-Wl,\(.*\)/ s//\1/") + LDFLAGS:=$(LDFLAGS) $(shell dpkg-buildflags --get LDFLAGS | sed "s/-Wl\|,/ /ig") endif $(shared_lib): $(source) Makefile -- 2.34.1