summaryrefslogtreecommitdiffstats
path: root/sample
diff options
context:
space:
mode:
authorkangsterizer <kang@insecure.ws>2014-04-13 13:15:00 +0200
committerGert Doering <gert@greenie.muc.de>2014-04-13 13:29:03 +0200
commite8d8e50f4da33af6e81675174fcfbf0fd8642b91 (patch)
treeac14c97ef9abbd0ecb02f19427093c46d5eb53a1 /sample
parent8962827529636126b0c9005ce6bb46f47cb3a9f9 (diff)
downloadopenvpn-e8d8e50f4da33af6e81675174fcfbf0fd8642b91.tar.gz
openvpn-e8d8e50f4da33af6e81675174fcfbf0fd8642b91.tar.xz
openvpn-e8d8e50f4da33af6e81675174fcfbf0fd8642b91.zip
Fix typo in sample build script to use LDFLAGS
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)
Diffstat (limited to 'sample')
-rwxr-xr-xsample/sample-plugins/defer/build2
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/sample-plugins/defer/build b/sample/sample-plugins/defer/build
index 0612c08..ba41a39 100755
--- a/sample/sample-plugins/defer/build
+++ b/sample/sample-plugins/defer/build
@@ -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