From c11ec7654a258b4677bf94f4578886e13dd14488 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sun, 23 Sep 2012 00:23:05 -0600 Subject: [PATCH] Removed useless -Wl from .so linking command. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index baca6875..fb268c99 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ libsundown.so: libsundown.so.1 ln -f -s $^ $@ libsundown.so.1: $(SUNDOWN_SRC) - $(CC) $(LDFLAGS) -shared -Wl $^ -o $@ + $(CC) $(LDFLAGS) -shared $^ -o $@ # executables