commit cdaa7b860ea3af523318bc8d3c9a412fcd0d24b4
parent 570a2bf4ce82a5836351f8b806ba53c2adff8692
Author: FRIGN <dev@frign.de>
Date: Mon, 7 Sep 2015 11:28:30 +0200
Fix build
Dimitris forgot to change one line, which could, depending on the
environment, break the build ($LD would be empty).
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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 $<