From b684e7a52cd3733bce2404bcac1b26ea92c7f38d Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 5 Mar 2018 15:37:04 +0100 Subject: [PATCH] BUILD/MINOR: fix Lua build on Mac OS X (again) Previous commit (13113d6 "MINOR/BUILD: fix Lua build on Mac OS X") contains a typo, it uses "-export-dynamic" instead of "-export_dynamic" (dash instead of underscore), despite what the commit message suggests, and it obviously doesn't work. Thanks to Kirill A. Korinsky for reporting it. This patch should be backported on each version from 1.6 like the aforementionned one above. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index db3a7d186..217dcd360 100644 --- a/Makefile +++ b/Makefile @@ -331,7 +331,7 @@ ifeq ($(TARGET),osx) USE_POLL = implicit USE_KQUEUE = implicit USE_TPROXY = implicit - EXPORT_SYMBOL = -export-dynamic + EXPORT_SYMBOL = -export_dynamic else ifeq ($(TARGET),openbsd) # This is for OpenBSD >= 5.7