aboutsummaryrefslogtreecommitdiff
path: root/libexec/flua/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/flua/Makefile')
-rw-r--r--libexec/flua/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/libexec/flua/Makefile b/libexec/flua/Makefile
index 3efb75044b09..c852bd4fe499 100644
--- a/libexec/flua/Makefile
+++ b/libexec/flua/Makefile
@@ -30,6 +30,10 @@ CFLAGS+= -DLUA_PROGNAME="\"${PROG}\""
CFLAGS+= -DLUA_USE_READLINE
CFLAGS+= -I${SRCTOP}/lib/libedit -I${SRCTOP}/contrib/libedit
LIBADD+= edit
+LDFLAGS+= -Wl,-E
+.else
+# We don't support dynamic libs on bootstrap builds.
+CFLAGS+= -DBOOTSTRAPPING
.endif
UCLSRC?= ${SRCTOP}/contrib/libucl
@@ -38,6 +42,4 @@ SRCS+= lua_ucl.c
CFLAGS+= -I${UCLSRC}/include -I${UCLSRC}/src -I${UCLSRC}/uthash
LIBADD+= ucl
-LDFLAGS+= -Wl,-E
-
.include <bsd.prog.mk>