Fix build

Dimitris forgot to change one line, which could, depending on the
environment, break the build ($LD would be empty).
This commit is contained in:
FRIGN 2015-09-07 11:28:30 +02:00 committed by sin
parent 570a2bf4ce
commit cdaa7b860e
1 changed files with 1 additions and 1 deletions

View File

@ -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 $<