]> andersk Git - gssapi-openssh.git/blob - bundle/make-bin-bundle
o Add easy version setting to the bundle module.
[gssapi-openssh.git] / bundle / make-bin-bundle
1 #!/bin/sh
2 #
3 # Usage:
4 #
5 #   1) Verify that your GLOBUS_LOCATION is set to the installation from which you
6 #      wish to create a binary bundle.
7 #
8 #   2) Run the bin-bundle creation script:
9 #
10 #        ./make-bin-bundle
11 #
12
13 source version.sh
14
15 NAME="gsi_openssh_bundle-$VERSION-i686-pc-linux-gnu.tar.gz"
16
17 if [ ! -e $NAME ]; then
18     $GPT_LOCATION/sbin/gpt-bundle -output=$NAME -bv=$VERSION -xml=gsi_openssh_bundle-bin.xml
19 else; then
20     echo "Please remove $NAME before running this script."
21 fi
22
This page took 0.093518 seconds and 5 git commands to generate.