From: Russ Tyndall Date: Tue, 10 Jun 2014 15:26:09 +0000 (-0400) Subject: fixed the broken mysql LDFLAGS in debian db-mysql still doesnt build, but the ld... X-Git-Tag: v6.6.0~10 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=340bfa03e48e1d44406b15bf3177add0933f2429 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 --- 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