File: maketapinstall

package info (click to toggle)
openvpn 2.2.1-8%2Bdeb7u3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 8,960 kB
  • sloc: ansic: 60,297; sh: 5,704; python: 631; makefile: 282; perl: 242; awk: 13
file content (15 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# Get the x86 and x64 versions of the tapinstall tool

# get version.nsi definitions
. autodefs/defs.sh

if [ -d "$TAPBINSRC" ]; then
    mkdir -p $GENOUT/tapinstall/i386 &>/dev/null
    mkdir -p $GENOUT/tapinstall/amd64 &>/dev/null
    cp $TAPBINSRC/i386/tapinstall.exe $GENOUT/tapinstall/i386
    cp $TAPBINSRC/amd64/tapinstall.exe $GENOUT/tapinstall/amd64
else
    echo Cannot find pre-built tapinstall
fi