Changeset 69365 in vbox
- Timestamp:
- Oct 26, 2017 3:17:14 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 118689
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/ose-tarball.sh
r69210 r69365 1 1 #!/bin/sh 2 ## @file3 2 # Use this script in conjunction with snapshot-ose.sh 4 #5 6 #7 # Copyright (C) 2006-2017 Oracle Corporation8 #9 # This file is part of VirtualBox Open Source Edition (OSE), as10 # available from http://www.virtualbox.org. This file is free software;11 # you can redistribute it and/or modify it under the terms of the GNU12 # General Public License (GPL) as published by the Free Software13 # Foundation, in version 2 as it comes in the "COPYING" file of the14 # VirtualBox OSE distribution. VirtualBox OSE is distributed in the15 # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.16 #17 3 18 4 vboxdir=`pwd` … … 25 11 exit 1 26 12 fi 27 vermajor=`grep "^VBOX_VERSION_MAJOR *=" "$vboxdir/ Config.kmk"|sed -e "s|.*= *\(.*\)|\1|g"`28 verminor=`grep "^VBOX_VERSION_MINOR *=" "$vboxdir/ Config.kmk"|sed -e "s|.*= *\(.*\)|\1|g"`29 verbuild=`grep "^VBOX_VERSION_BUILD *=" "$vboxdir/ Config.kmk"|sed -e "s|.*= *\(.*\)|\1|g"`13 vermajor=`grep "^VBOX_VERSION_MAJOR *=" "$vboxdir/Version.kmk"|sed -e "s|.*= *\(.*\)|\1|g"` 14 verminor=`grep "^VBOX_VERSION_MINOR *=" "$vboxdir/Version.kmk"|sed -e "s|.*= *\(.*\)|\1|g"` 15 verbuild=`grep "^VBOX_VERSION_BUILD *=" "$vboxdir/Version.kmk"|sed -e "s|.*= *\(.*\)|\1|g"` 30 16 rootpath=`cd ..;pwd` 31 17 verstr="$vermajor.$verminor.$verbuild"
Note:
See TracChangeset
for help on using the changeset viewer.