summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-21 21:28:43 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-21 21:28:43 +0000
commit92c6b6a45b1ce6dc82d2ee71d8b7a6f354f39eff (patch)
tree2e0bbc989f01d81027ea9bd031932ba3d107e4c7
parentfa93e485513e45c941a3ab2a89e65545da3f8474 (diff)
force mount of shared folder before build, and copy result there when done
git-svn-id: svn://localhost/ardour2/branches/3.0@9182 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--tools/linux_packaging/noderun6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/linux_packaging/noderun b/tools/linux_packaging/noderun
index 363f14edb5..0d1a6ea881 100644
--- a/tools/linux_packaging/noderun
+++ b/tools/linux_packaging/noderun
@@ -6,6 +6,12 @@ if [ x$BASE = "x" ] ; then
exit 1
fi
+if mount | grep --silent vmshare ; then
+ :
+else
+ sudo mount -t vboxsf vmshare ~/vmshare
+fi
+
cd $BASE || exit 1
svn update || exit 1
./waf configure --strict --noconfirm || exit 1