Changeset 79:e35e539c5c9c in xplra
- Timestamp:
- 04/14/13 12:02:07 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r78 r79 8 8 buildallhosts.sh \ 9 9 buildmsi.bat \ 10 mkalldist.sh \ 10 11 mkccclientdist.sh \ 11 12 mkplugindist.sh \ -
mkccclientdist.sh
r78 r79 12 12 13 13 if test $# -lt 2; then 14 echo "Usage: mkccclientdist.sh <build directory> <target suffix> "14 echo "Usage: mkccclientdist.sh <build directory> <target suffix> [<destination directory>]" 15 15 exit 1 16 16 fi -
mkplugindist.sh
r62 r79 5 5 # Script to create the plugin distribution from an already built set of sources. 6 6 # 7 # Usage: mkplugindist.sh <build directory> 7 # Usage: mkplugindist.sh <build directory> [<destination directory>] 8 8 # 9 9 # <build directory> is the directory containing the build directories as … … 14 14 15 15 if test $# -lt 1; then 16 echo "Usage: mkplugindist.sh <build directory> "16 echo "Usage: mkplugindist.sh <build directory> [<destination directory>]" 17 17 exit 1 18 18 fi 19 19 20 zipfile="${scriptdir}/xplra.zip" 20 destdir="${2:-}" 21 if test -z "${destdir}"; then 22 destdir=`pwd` 23 fi 24 25 zipfile="${destdir}/xplra.zip" 21 26 builddir="${1}" 22 27
Note:
See TracChangeset
for help on using the changeset viewer.