summaryrefslogtreecommitdiff
path: root/util/buildbot
diff options
context:
space:
mode:
authorPilzAdam <pilzadam@minetest.net>2013-05-18 16:13:32 +0200
committerPilzAdam <pilzadam@minetest.net>2013-05-18 16:13:32 +0200
commitb76ec317c9eb69c8f4864f5d467e6a1e0ac7e81e (patch)
treea435473842765b3b382cd8de76a8c0e394e9d33f /util/buildbot
parent714ecc5e27c2c01b0f3ce0ba626abb6baca9af13 (diff)
downloadminetest-b76ec317c9eb69c8f4864f5d467e6a1e0ac7e81e.tar.gz
minetest-b76ec317c9eb69c8f4864f5d467e6a1e0ac7e81e.tar.bz2
minetest-b76ec317c9eb69c8f4864f5d467e6a1e0ac7e81e.zip
Remove common from CMakeLists.txt, README.txt, lua-api.txt and buildwin.sh
Diffstat (limited to 'util/buildbot')
-rwxr-xr-xutil/buildbot/buildwin32.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/util/buildbot/buildwin32.sh b/util/buildbot/buildwin32.sh
index 0c0d7cf21..fc42db8a7 100755
--- a/util/buildbot/buildwin32.sh
+++ b/util/buildbot/buildwin32.sh
@@ -53,9 +53,6 @@ cd $builddir
wget http://github.com/minetest/minetest/zipball/master \
-c -O $packagedir/minetest.zip --tries=3 || (echo "Please download http://github.com/minetest/minetest/zipball/master manually and save it as $packagedir/minetest.zip"; read -s)
[ -e $packagedir/minetest.zip ] || (echo "minetest.zip not found"; exit 1)
-wget http://github.com/minetest/common/zipball/master \
- -c -O $packagedir/common.zip --tries=3 || (echo "Please download http://github.com/minetest/common/zipball/master manually and save it as $packagedir/common.zip"; read -s)
-[ -e $packagedir/common.zip ] || (echo "common.zip not found"; exit 1)
wget http://github.com/minetest/minetest_game/zipball/master \
-c -O $packagedir/minetest_game.zip --tries=3 || (echo "Please download http://github.com/minetest/minetest_game/zipball/master manually and save it as $packagedir/minetest_game.zip"; read -s)
[ -e $packagedir/minetest_game.zip ] || (echo "minetest_game.zip not found"; exit 1)
@@ -69,7 +66,6 @@ wget http://github.com/minetest/minetest_game/zipball/master \
minetestdirname=`unzip -l $packagedir/minetest.zip | head -n 7 | tail -n 1 | sed -e 's/^[^m]*//' -e 's/\/.*$//'`
minetestdir=$builddir/$minetestdirname || exit 1
git_hash=`echo $minetestdirname | sed -e 's/minetest-minetest-//'`
-commondirname=`unzip -l $packagedir/common.zip | head -n 7 | tail -n 1 | sed -e 's/^[^m]*//' -e 's/\/.*$//'`
minetest_gamedirname=`unzip -l $packagedir/minetest_game.zip | head -n 7 | tail -n 1 | sed -e 's/^[^m]*//' -e 's/\/.*$//'`
# Extract stuff
@@ -90,13 +86,6 @@ unzip -o $packagedir/minetest.zip || exit 1
rm -rf $builddir/minetest
ln -s $minetestdir $builddir/minetest
-# Extract common
-cd $minetestdir/games || exit 1
-rm -rf common || exit 1
-unzip -o $packagedir/common.zip || exit 1
-commondir=$minetestdir/games/$commondirname || exit 1
-mv $commondir $minetestdir/games/common || exit 1
-
# Extract minetest_game
cd $minetestdir/games || exit 1
rm -rf minetest_game || exit 1