diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-03-10 10:02:20 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-03-10 10:02:20 +0000 |
commit | cefe973e4ceca649a08749fb3c7f09ef09d2d145 (patch) | |
tree | b280e66ca98b00de8337750b4cd3b1c9edb93579 /install-win32/makeservice | |
parent | Added new OpenVPN icon and installer graphic. (diff) | |
download | openvpn-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 '')
-rw-r--r-- | install-win32/makeservice | 4 |
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 |