aboutsummaryrefslogtreecommitdiff
path: root/install-win32/makeservice
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-03-10 10:02:20 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-03-10 10:02:20 +0000
commitcefe973e4ceca649a08749fb3c7f09ef09d2d145 (patch)
treeb280e66ca98b00de8337750b4cd3b1c9edb93579 /install-win32/makeservice
parentAdded new OpenVPN icon and installer graphic. (diff)
downloadopenvpn-cefe973e4ceca649a08749fb3c7f09ef09d2d145.tar.xz
First working version of XGUI inclusion.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2834 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'install-win32/makeservice')
-rw-r--r--install-win32/makeservice4
1 files changed, 3 insertions, 1 deletions
diff --git a/install-win32/makeservice b/install-win32/makeservice
index 688e0f5..647e178 100644
--- a/install-win32/makeservice
+++ b/install-win32/makeservice
@@ -24,7 +24,9 @@ if [ -d "$SVC_TEMPLATE" ] ; then
# copy service to GENOUT/bin
mkdir $GENOUT/bin &>/dev/null
cp service-win32/${PRODUCT_UNIX_NAME}serv.exe $GENOUT/bin
- strip $GENOUT/bin/${PRODUCT_UNIX_NAME}serv.exe
+ if [ -z "$NO_STRIP" ]; then
+ strip $GENOUT/bin/${PRODUCT_UNIX_NAME}serv.exe
+ fi
else
echo OpenVPN service not built -- template directory $SVC_TEMPLATE NOT FOUND
fi