From 5ee14833733593ef8f7f1bef1bbd788dd20c774e Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sat, 29 Oct 2016 10:05:54 -0400 Subject: [PATCH] [autobuild] adjust Makefile.am for FreeBSD the cross-compile build rule does not seem to like $^ for lemon, so specify lemon.c explicitly in the build command (thx stbuehler for suggested workaround) --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 084381aa..41eee666 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -10,7 +10,7 @@ TESTS=\ test_configfile$(EXEEXT) lemon$(BUILD_EXEEXT): lemon.c - $(AM_V_CC)$(CC_FOR_BUILD) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ $^ + $(AM_V_CC)$(CC_FOR_BUILD) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ lemon.c lighttpd_angel_SOURCES=lighttpd-angel.c