]> 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:29:03 +0000 (13:29 +0200)
Came in as github pull request #15

Signed-off-by: Gert Doering <gert@greenie.muc.de>
Acked-By: Arne Schwabe <arne@rfc2549.org>
(cherry picked from commit a95358af543b9106f4ef481e4556d1d03459d058)

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