aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/pd-extended-auto-builder.sh
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-09-26 15:52:11 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-09-26 15:52:11 +0000
commite7ef0380e7f650ee2686164dbce579ec31ae0e33 (patch)
tree7c2c54beffe153699790b4bb002135507b6a464b /scripts/auto-build/pd-extended-auto-builder.sh
parent711958f47816ba94470a73dac82f08163e417342 (diff)
only make source tarball when its requested via command line arg
svn path=/trunk/; revision=16306
Diffstat (limited to 'scripts/auto-build/pd-extended-auto-builder.sh')
-rwxr-xr-xscripts/auto-build/pd-extended-auto-builder.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/auto-build/pd-extended-auto-builder.sh b/scripts/auto-build/pd-extended-auto-builder.sh
index 6c71638d..721e7f3b 100755
--- a/scripts/auto-build/pd-extended-auto-builder.sh
+++ b/scripts/auto-build/pd-extended-auto-builder.sh
@@ -64,9 +64,11 @@ print_ip_address
if [ "$1" = "source-tarball-only" ]; then
echo "--- making source tarball ------------------------------"
- make_source_tarball "${auto_build_root_dir}" "${auto_build_root_dir}/packages/$BUILD_DIR"
+ version=$(get_pd_version $auto_build_root_dir)
+ tarballname=Pd-extended_$version.tar.bz2
+ make_source_tarball "${auto_build_root_dir}" $tarballname
echo "The source tarball is here:"
- echo " ${auto_build_root_dir}/packages/$BUILD_DIR"
+ echo " /tmp/$tarballname"
echo "Finished cleaning and making source tarball, exiting."
exit
fi