]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Fix typo in sample build script to use LDFLAGS
authorkangsterizer <kang@insecure.ws>
Sun, 13 Apr 2014 11:15:00 +0000 (13:15 +0200)
committerGert Doering <gert@greenie.muc.de>
Sun, 13 Apr 2014 11:26:55 +0000 (13:26 +0200)
Came in as github pull request #15

Signed-off-by: Gert Doering <gert@greenie.muc.de>
Acked-By: Arne Schwabe <arne@rfc2549.org>
sample/sample-plugins/defer/build

index 0612c0808ed5c35525b47f504fbcefb3de222842..ba41a39f3530d56fdb5d524a8e40775946b43240 100755 (executable)
@@ -12,4 +12,4 @@ CC="${CC:-gcc}"
 CFLAGS="${CFLAGS:--O2 -Wall -g}"
 
 $CC $CPPFLAGS $CFLAGS -fPIC -c $1.c && \
-$CC $CFLAGS -fPIC -shared ${LDFLAS} -Wl,-soname,$1.so -o $1.so $1.o -lc
+$CC $CFLAGS -fPIC -shared ${LDFLAGS} -Wl,-soname,$1.so -o $1.so $1.o -lc