From cdaa7b860ea3af523318bc8d3c9a412fcd0d24b4 Mon Sep 17 00:00:00 2001 From: FRIGN Date: Mon, 7 Sep 2015 11:28:30 +0200 Subject: [PATCH] Fix build Dimitris forgot to change one line, which could, depending on the environment, break the build ($LD would be empty). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 14af4f6..c758095 100644 --- a/Makefile +++ b/Makefile @@ -152,7 +152,7 @@ config.h: cp config.def.h $@ .o: - $(LD) $(LDFLAGS) -o $@ $< $(LIB) $(LDLIBS) + $(CC) $(LDFLAGS) -o $@ $< $(LIB) $(LDLIBS) .c.o: $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<