aboutsummaryrefslogtreecommitdiff
path: root/scripts/build-libs-for-pd-on-mingw.sh
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-01-05 16:31:23 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-01-05 16:31:23 +0000
commit98e6b37577ca5a842e1ee6f80040b0079edc7e84 (patch)
tree7222bb3d5d119fda543e5b48239dfb731a06c7b8 /scripts/build-libs-for-pd-on-mingw.sh
parent161fdc9ed3bfd4686e1d16e155d0282771b459c9 (diff)
tweaked to hopefully make it more fault-tolerant
svn path=/trunk/; revision=7213
Diffstat (limited to 'scripts/build-libs-for-pd-on-mingw.sh')
-rwxr-xr-xscripts/build-libs-for-pd-on-mingw.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/scripts/build-libs-for-pd-on-mingw.sh b/scripts/build-libs-for-pd-on-mingw.sh
index 1a1a92f3..3b978204 100755
--- a/scripts/build-libs-for-pd-on-mingw.sh
+++ b/scripts/build-libs-for-pd-on-mingw.sh
@@ -32,8 +32,8 @@ if [ -e "$testfile" ]; then
echo "$testfile exists, skipping..."
else
echo "Building everything for $testfile"
- tar xzf tcl8.4.13-src.tar.gz
- cd tcl8.4.13/win
+ tar xzf tcl8.4.*-src.tar.gz
+ cd tcl8.4.*/win
./configure && make CYGPATH=echo && make install
cd ../..
fi
@@ -44,8 +44,8 @@ if [ -e "$testfile" ]; then
echo "$testfile exists, skipping..."
else
echo "Building everything for $testfile"
- tar xzf tk8.4.13-src.tar.gz
- cd tk8.4.13/win
+ tar xzf tk8.4.*-src.tar.gz
+ cd tk8.4.*/win
./configure && make CYGPATH=echo && make install
cd ../..
fi
@@ -56,7 +56,8 @@ if [ -e "$testfile" ]; then
echo "$testfile exists, skipping..."
else
echo "Building everything for $testfile"
- tar xzf libogg-1.1.3.tar.gz && cd libogg-1.1.3
+ tar xzf libogg-1.1.*.tar.gz
+ cd libogg-1.1.*
./configure && make && make install
cd ..
fi
@@ -84,7 +85,8 @@ if [ -e "$testfile" ]; then
echo "$testfile exists, skipping..."
else
echo "Building everything for $testfile"
- tar xzf libvorbis-1.1.2.tar.gz && cd libvorbis-1.1.2
+ tar xzf libvorbis-1.1.*.tar.gz
+ cd libvorbis-1.1.*
./configure && make
cd lib
/bin/sh ../libtool --tag=CC --mode=link gcc -O20 -D__NO_MATH_INLINES \